unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: storm@cua.dk (Kim F. Storm)
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: dann@ics.uci.edu, rms@gnu.org, Drew Adams <drew.adams@oracle.com>,
	emacs-devel@gnu.org
Subject: CUA-mode features and documenation (was: Re: change cursor type when idle)
Date: Wed, 13 Feb 2008 17:04:45 +0100	[thread overview]
Message-ID: <87ir0sonaa.fsf_-_@kfs-lx.rd.rdm> (raw)
In-Reply-To: <jwvr6fgvp6b.fsf-monnier+emacs@gnu.org> (Stefan Monnier's message of "Wed\, 13 Feb 2008 10\:45\:36 -0500")

Stefan Monnier <monnier@iro.umontreal.ca> writes:

> Even just a few starting hints would be good: how to enable each major
> feature (e.g. the cursor stuff, the rectangle stuff, ...).

The commentary in cua-base.el contains a few hints :-)

Some details of the info may be slightly inaccurate though.


---------------- 8< ----------- cut here -------------

This is the CUA package which provides a complete emulation of the
standard CUA key bindings (Motif/Windows/Mac GUI) for selecting and
manipulating the region where S-<movement> is used to highlight &
extend the region.

CUA style key bindings for cut and paste
----------------------------------------

This package allows the C-z, C-x, C-c, and C-v keys to be
bound appropriately according to the Motif/Windows GUI, i.e.
C-z	-> undo
C-x	-> cut
C-c	-> copy
C-v	-> paste

The tricky part is the handling of the C-x and C-c keys which
are normally used as prefix keys for most of emacs' built-in
commands.  With CUA they still do!!!

Only when the region is currently active (and highlighted since
transient-mark-mode is used), the C-x and C-c keys will work as CUA
keys
	C-x -> cut
	C-c -> copy
When the region is not active, C-x and C-c works as prefix keys!

This probably sounds strange and difficult to get used to - but
based on my own experience and the feedback from many users of
this package, it actually works very well and users adapt to it
instantly - or at least very quickly.  So give it a try!
.. and in the few cases where you make a mistake and accidentally
delete the region - you just undo the mistake (with C-z).

If you really need to perform a command which starts with one of
the prefix keys even when the region is active, you have three options:
- press the prefix key twice very quickly (within 0.2 seconds),
- press the prefix key and the following key within 0.2 seconds, or
- use the SHIFT key with the prefix key, i.e. C-X or C-C

This behaviour can be customized via the
cua-prefix-override-inhibit-delay variable.

In addition to using the shifted movement keys, you can also use
[C-space] to start the region and use unshifted movement keys to extend
it. To cancel the region, use [C-space] or [C-g].

If you prefer to use the standard emacs cut, copy, paste, and undo
bindings, customize cua-enable-cua-keys to nil.


Typing text replaces the region
-------------------------------

When the region is active, i.e. highlighted, the text in region is
replaced by the text you type.

The replaced text is saved in register 0 which can be inserted using
the key sequence M-0 C-v (see the section on register support below).

If you have just replaced a highlighted region with typed text,
you can repeat the replace with M-v.  This will search forward
for a streach of text identical to the previous contents of the
region (i.e. the contents of register 0) and replace it with the
text you typed to replace the original region.	Repeating M-v will
replace the next matching region and so on.

Example:  Suppose you have a line like this
  The redo operation will redo the last redoable command
which you want to change into
  The repeat operation will repeat the last repeatable command
This is done by highlighting the first occurrence of "redo"
and type "repeat" M-v M-v.

Note: Since CUA-mode duplicates the functionality of the
delete-selection-mode, that mode is automatically disabled when
CUA-mode is enabled.


CUA mode indications
--------------------
You can choose to let CUA use different cursor colors to indicate
overwrite mode and read-only buffers.  For example, the following
setting will use a RED cursor in normal (insertion) mode in
read-write buffers, a YELLOW cursor in overwrite mode in read-write
buffers, and a GREEN cursor read-only buffers:

 (setq cua-normal-cursor-color "red")
 (setq cua-overwrite-cursor-color "yellow")
 (setq cua-read-only-cursor-color "green")


CUA register support
--------------------
Emacs' standard register support is also based on a separate set of
"register commands".

CUA's register support is activated by providing a numeric
prefix argument to the C-x, C-c, and C-v commands. For example,
to copy the selected region to register 2, enter [M-2 C-c].
Or if you have activated the keypad prefix mode, enter [kp-2 C-c].

And CUA will copy and paste normal region as well as rectangles
into the registers, i.e. you use exactly the same command for both.

In addition, the last highlighted text that is deleted (not
copied), e.g. by [delete] or by typing text over a highlighted
region, is automatically saved in register 0, so you can insert it
using [M-0 C-v].

CUA rectangle support
---------------------
Emacs' normal rectangle support is based on interpreting the region
between the mark and point as a "virtual rectangle", and using a
completely separate set of "rectangle commands" [C-x r ...] on the
region to copy, kill, fill a.s.o. the virtual rectangle.

cua-mode's superior rectangle support uses a true visual
representation of the selected rectangle, i.e. it highlights the
actual part of the buffer that is currently selected as part of the
rectangle.  Unlike emacs' traditional rectangle commands, the
selected rectangle always as straight left and right edges, even
when those are in the middle of a TAB character or beyond the end
of the current line.  And it does this without actually modifying
the buffer contents (it uses display overlays to visualize the
virtual dimensions of the rectangle).

This means that cua-mode's rectangles are not limited to the actual
contents of the buffer, so if the cursor is currently at the end of a
short line, you can still extend the rectangle to include more columns
of longer lines in the same rectangle.	And you can also have the
left edge of a rectangle start in the middle of a TAB character.
Sounds strange? Try it!

To start a rectangle, use [C-return] and extend it using the normal
movement keys (up, down, left, right, home, end, C-home,
C-end). Once the rectangle has the desired size, you can cut or
copy it using C-x and C-c (or C-w and M-w), and you can
subsequently insert it - as a rectangle - using C-v (or C-y).  So
the only new command you need to know to work with cua-mode
rectangles is C-return!

Normally, when you paste a rectangle using C-v (C-y), each line of
the rectangle is inserted into the existing lines in the buffer.
If overwrite-mode is active when you paste a rectangle, it is
inserted as normal (multi-line) text.

If you prefer the traditional rectangle marking (i.e. don't want
straight edges), [M-p] toggles this for the current rectangle,
or you can customize cua-virtual-rectangle-edges.

And there's more: If you want to extend or reduce the size of the
rectangle in one of the other corners of the rectangle, just use
[return] to move the cursor to the "next" corner.  Or you can use
the [M-up], [M-down], [M-left], and [M-right] keys to move the
entire rectangle overlay (but not the contents) in the given
direction.

[C-return] cancels the rectangle
[C-space] activates the region bounded by the rectangle

If you type a normal (self-inserting) character when the rectangle is
active, the character is inserted on the "current side" of every line
of the rectangle.  The "current side" is the side on which the cursor
is currently located. If the rectangle is only 1 column wide,
insertion will be performed to the left when the cursor is at the
bottom of the rectangle.  So, for example, to comment out an entire
paragraph like this one, just place the cursor on the first character
of the first line, and enter the following:
    C-return M-} ; ; <space>  C-return

cua-mode's rectangle support also includes all the normal rectangle
functions with easy access:

[M-a] aligns all words at the left edge of the rectangle
[M-b] fills the rectangle with blanks (tabs and spaces)
[M-c] closes the rectangle by removing all blanks at the left edge
      of the rectangle
[M-f] fills the rectangle with a single character (prompt)
[M-i] increases the first number found on each line of the rectangle
      by the amount given by the numeric prefix argument (default 1)
      It recognizes 0x... as hexadecimal numbers
[M-k] kills the rectangle as normal multi-line text (for paste)
[M-l] downcases the rectangle
[M-m] copies the rectangle as normal multi-line text (for paste)
[M-n] fills each line of the rectangle with increasing numbers using
      a supplied format string (prompt)
[M-o] opens the rectangle by moving the highlighted text to the
      right of the rectangle and filling the rectangle with blanks.
[M-p] toggles virtual straight rectangle edges
[M-P] inserts tabs and spaces (padding) to make real straight edges
[M-q] performs text filling on the rectangle
[M-r] replaces REGEXP (prompt) by STRING (prompt) in rectangle
[M-R] reverse the lines in the rectangle
[M-s] fills each line of the rectangle with the same STRING (prompt)
[M-t] performs text fill of the rectangle with TEXT (prompt)
[M-u] upcases the rectangle
[M-|] runs shell command on rectangle
[M-'] restricts rectangle to lines with CHAR (prompt) at left column
[M-/] restricts rectangle to lines matching REGEXP (prompt)
[C-?] Shows a brief list of the above commands.

[M-C-up] and [M-C-down] scrolls the lines INSIDE the rectangle up
and down; lines scrolled outside the top or bottom of the rectangle
are lost, but can be recovered using [C-z].

CUA Global Mark
---------------
The final feature provided by CUA is the "global mark", which
makes it very easy to copy bits and pieces from the same and other
files into the current text.  To enable and cancel the global mark,
use [S-C-space].  The cursor will blink when the global mark
is active.  The following commands behave differently when the global
mark is set:
<ch>  All characters (including newlines) you type are inserted
      at the global mark!
[C-x] If you cut a region or rectangle, it is automatically inserted
      at the global mark, and the global mark is advanced.
[C-c] If you copy a region or rectangle, it is immediately inserted
      at the global mark, and the global mark is advanced.
[C-v] Copies a single character to the global mark.
[C-d] Moves (i.e. deletes and inserts) a single character to the
      global mark.
[backspace] deletes the character before the global mark, while
[delete] deltes the character after the global mark.

[S-C-space] Jumps to and cancels the global mark.
[C-u S-C-space] Cancels the global mark (stays in current buffer).

[TAB] Indents the current line or rectangle to the column of the
      global mark.

-- 
Kim F. Storm <storm@cua.dk> http://www.cua.dk





  reply	other threads:[~2008-02-13 16:04 UTC|newest]

Thread overview: 274+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-28  7:48 change cursor type when idle Drew Adams
2006-08-28  9:54 ` Kim F. Storm
2006-08-28 15:00   ` Drew Adams
2006-08-28 15:30     ` Lennart Borgman
2006-08-28 16:08       ` David Hansen
2006-08-28 16:09       ` Drew Adams
2006-08-28 16:21         ` Lennart Borgman
2006-08-28 16:58           ` Drew Adams
2006-08-28 21:27             ` Juri Linkov
2006-08-28 23:13               ` Drew Adams
2006-08-29 20:27                 ` Juri Linkov
2006-08-29 20:51                   ` Drew Adams
2006-08-29 13:51               ` Mathias Dahl
2006-08-29 13:59                 ` Drew Adams
2006-08-29 20:17                   ` Kevin Rodgers
2006-08-28 21:06       ` Kim F. Storm
2006-08-28 21:44   ` Kim F. Storm
2006-08-29  1:18     ` Luc Teirlinck
2006-08-29  7:44       ` Kim F. Storm
2006-08-29 13:38         ` Drew Adams
2006-08-28 22:10 ` Richard Stallman
2007-07-01 20:24   ` Drew Adams
2007-07-02 19:47     ` Richard Stallman
2008-02-11  7:48     ` Drew Adams
2008-02-11 10:11       ` Thien-Thi Nguyen
2008-02-13  0:25         ` Richard Stallman
2008-02-11 21:10       ` Richard Stallman
2008-02-12 14:30         ` Dan Nicolaescu
2008-02-12 14:43           ` Juanma Barranquero
2008-02-12 15:10             ` Dan Nicolaescu
2008-02-12 15:23               ` Juanma Barranquero
2008-02-12 16:20                 ` Dan Nicolaescu
2008-02-12 16:28                   ` Juanma Barranquero
2008-02-12 16:43                     ` Dan Nicolaescu
2008-02-12 17:12                       ` Juanma Barranquero
2008-02-12 18:07                         ` Dan Nicolaescu
2008-02-12 18:20                           ` Juanma Barranquero
2008-02-12 18:34                             ` Drew Adams
2008-02-12 19:34                               ` Juri Linkov
2008-02-12 21:45                               ` Juri Linkov
2008-02-12 18:44                             ` Dan Nicolaescu
2008-02-12 20:54                               ` Juanma Barranquero
2008-02-12 15:19           ` Drew Adams
2008-02-12 15:35             ` Juanma Barranquero
2008-02-12 16:11             ` Dan Nicolaescu
2008-02-12 16:21               ` Juanma Barranquero
2008-02-12 16:27                 ` David Kastrup
2008-02-12 16:36                   ` Juanma Barranquero
2008-02-12 16:55                 ` Dan Nicolaescu
2008-02-12 17:14                   ` Juanma Barranquero
2008-02-12 17:45             ` Richard Stallman
2008-02-13 11:52               ` Kim F. Storm
2008-02-13 15:45                 ` Stefan Monnier
2008-02-13 16:04                   ` Kim F. Storm [this message]
2008-02-13 16:23                     ` CUA-mode features and documenation (was: Re: change cursor type when idle) Dan Nicolaescu
2008-02-13 22:45                       ` CUA-mode features and documenation Juri Linkov
2008-02-13 22:59                         ` Dan Nicolaescu
2008-02-13 23:18                         ` Miles Bader
2008-02-14  0:01                           ` Juri Linkov
2008-02-14  0:50                             ` Miles Bader
2008-02-14  0:58                               ` Lennart Borgman (gmail)
2008-02-14  1:12                                 ` Miles Bader
2008-02-14 18:10                                 ` Richard Stallman
2008-02-15 17:11                                   ` Dan Nicolaescu
2008-02-17 13:22                                     ` Richard Stallman
2008-02-17 18:05                                       ` Drew Adams
2008-02-18 11:40                                         ` Richard Stallman
2008-02-18 13:44                                         ` Kim F. Storm
2008-02-18 15:52                                           ` Drew Adams
2008-02-17 19:51                                       ` Miles Bader
2008-02-17 22:24                                         ` Lennart Borgman (gmail)
2008-02-17 22:30                                           ` Miles Bader
2008-02-18 13:48                                             ` Kim F. Storm
2008-02-17 13:22                                     ` Richard Stallman
2008-02-17 16:58                                       ` Dan Nicolaescu
2008-02-17 18:06                                         ` Drew Adams
2008-02-18 11:40                                         ` Richard Stallman
2008-02-19  8:52                                         ` Enabling Transient Mark Mode by default [Re: CUA-mode features and documenation] Alan Mackenzie
2008-02-19  9:38                                           ` Dan Nicolaescu
2008-02-19 19:01                                             ` Enabling Transient Mark Mode by default Alan Mackenzie
2008-02-19 20:41                                               ` Stefan Monnier
2008-02-19 22:43                                               ` Miles Bader
2008-02-19 23:45                                                 ` Mathias Dahl
2008-02-19 23:49                                                   ` Lennart Borgman (gmail)
2008-02-20  0:12                                                     ` David Kastrup
2008-02-20  0:19                                                       ` Lennart Borgman (gmail)
2008-02-20  0:30                                                         ` David Kastrup
2008-02-20  0:49                                                           ` Lennart Borgman (gmail)
2008-02-20  7:48                                                             ` David Kastrup
2008-02-20  0:16                                                     ` Miles Bader
2008-02-20  3:49                                                     ` Stefan Monnier
2008-02-20  9:56                                                     ` Mathias Dahl
2008-02-20 16:32                                                       ` CUA-*mode (was: Enabling Transient Mark Mode by default) Stefan Monnier
2008-02-20 17:27                                                         ` Mathias Dahl
2008-02-20  8:59                                                 ` Enabling Transient Mark Mode by default Richard Stallman
2008-02-20 12:27                                                   ` Sascha Wilde
2008-02-20 12:52                                                     ` Juanma Barranquero
2008-02-20 13:09                                                       ` David Kastrup
2008-02-20 14:33                                                         ` Juanma Barranquero
2008-02-20 15:11                                                           ` David Kastrup
2008-02-20 15:43                                                             ` Juanma Barranquero
2008-02-20 15:55                                                       ` David Reitter
2008-02-20 16:04                                                         ` Juanma Barranquero
2008-02-20 16:27                                                           ` David Reitter
2008-02-21 15:34                                                             ` Dan Nicolaescu
2008-02-20 16:23                                                         ` David Kastrup
2008-02-21  3:52                                                         ` Provide different sets of .emacs [Was: Enabling Transient Mark Mode by default] William Xu
2008-02-21  4:04                                                           ` Provide different sets of .emacs William Xu
2008-02-20 16:14                                                       ` Enabling Transient Mark Mode by default Mathias Dahl
2008-02-20 16:27                                                         ` David Kastrup
2008-02-20 17:21                                                           ` Mathias Dahl
2008-02-20 17:30                                                             ` David Kastrup
2008-02-20 20:48                                                               ` Mathias Dahl
2008-02-20 21:07                                                                 ` David Kastrup
2008-02-20 16:52                                                     ` Stefan Monnier
2008-02-20 17:00                                                       ` David Kastrup
2008-02-20 17:58                                                         ` Stefan Monnier
2008-02-20 19:30                                                           ` David De La Harpe Golden
2008-02-20 20:09                                                             ` David Kastrup
2008-02-20 20:41                                                               ` David De La Harpe Golden
2008-02-21 17:45                                                                 ` Juri Linkov
2008-02-21 23:01                                                                   ` Lennart Borgman (gmail)
2008-02-21 23:24                                                                     ` Lennart Borgman (gmail)
2008-02-22  3:18                                                                   ` Miles Bader
     [not found]                                                                     ` <8e24944a0802212139r2bae3597ke49c5c6da65da445@mail.gmail.com>
2008-02-22  5:49                                                                       ` Fwd: " David De La Harpe Golden
2008-02-22 22:57                                                                     ` Richard Stallman
2008-02-23  0:09                                                                       ` Miles Bader
2008-02-23  0:31                                                                         ` Mike Mattie
2008-02-23  1:02                                                                           ` Drew Adams
2008-02-23  1:20                                                                         ` Bastien
2008-02-23  9:16                                                                           ` Sascha Wilde
2008-02-23  1:17                                                                       ` Bastien
2008-02-23  5:16                                                                         ` Stefan Monnier
2008-02-23 10:30                                                                           ` Bastien
2008-02-23 19:29                                                                         ` Richard Stallman
2008-02-20 21:44                                                           ` Lennart Borgman (gmail)
2008-02-21  9:16                                                             ` Richard Stallman
2008-02-21  9:16                                                           ` Richard Stallman
2008-02-21 14:31                                                             ` Stefan Monnier
2008-02-22 10:47                                                               ` Bastien
2008-02-22 13:11                                                                 ` Sascha Wilde
2008-02-22 14:16                                                                   ` Bastien Guerry
2008-02-22 14:48                                                                     ` David De La Harpe Golden
2008-02-22 18:06                                                                       ` Bastien
2008-02-22 15:53                                                                     ` Sascha Wilde
2008-02-22 18:12                                                                       ` Bastien
2008-02-22 22:20                                                                         ` Mike Mattie
2008-02-22 23:09                                                                         ` Mike Mattie
2008-02-23 19:28                                                                         ` Richard Stallman
2008-02-22 14:57                                                                 ` Andreas Schwab
2008-02-22 16:27                                                                 ` Leo
2008-02-22 22:57                                                                 ` Richard Stallman
2008-02-21 22:28                                                           ` Richard Stallman
2008-02-20 17:35                                                       ` Sascha Wilde
2008-02-20 18:04                                                         ` Lennart Borgman (gmail)
2008-02-20 19:02                                                         ` Evans Winner
2008-02-20 21:13                                                           ` Jason Earl
2008-02-20 21:24                                                             ` David Kastrup
2008-02-20 22:46                                                               ` David De La Harpe Golden
2008-02-21  7:30                                                                 ` martin rudalics
2008-02-21 22:29                                                                   ` scroll-restore.el Richard Stallman
2008-02-22 16:11                                                                     ` scroll-restore.el David De La Harpe Golden
2008-02-22 19:32                                                                       ` scroll-restore.el martin rudalics
2008-02-22 19:41                                                                         ` scroll-restore.el David De La Harpe Golden
2008-02-22 19:51                                                                           ` scroll-restore.el martin rudalics
2008-02-22 19:26                                                                     ` scroll-restore.el martin rudalics
2008-02-20 23:15                                                               ` Enabling Transient Mark Mode by default Jason Earl
2008-02-20 23:30                                                                 ` David Kastrup
2008-02-21  0:42                                                                   ` Jason Earl
2008-02-21  9:57                                                                     ` David Kastrup
2008-02-21 14:36                                                                       ` Stefan Monnier
2008-02-21 14:41                                                                         ` David Kastrup
2008-02-21 16:13                                                                           ` Stefan Monnier
2008-02-21 16:26                                                                             ` David Kastrup
2008-02-21 17:18                                                                               ` Stefan Monnier
2008-02-21 17:38                                                                                 ` David De La Harpe Golden
2008-02-21 17:52                                                                                   ` David De La Harpe Golden
2008-02-21 21:45                                                                                 ` David Kastrup
2008-02-21 22:24                                                                                   ` Miles Bader
2008-02-21 17:27                                                                             ` Drew Adams
2008-02-21 22:25                                                                               ` Miles Bader
2008-02-21 22:59                                                                                 ` Lennart Borgman (gmail)
2008-02-21 23:17                                                                                   ` Miles Bader
2008-02-21 23:22                                                                                     ` Lennart Borgman (gmail)
2008-02-21 23:39                                                                                       ` Mathias Dahl
2008-02-21 23:45                                                                                         ` Lennart Borgman (gmail)
2008-02-21 23:10                                                                                 ` Drew Adams
2008-02-22 10:07                                                                                 ` Andreas Schwab
2008-02-22 12:19                                                                                   ` Tassilo Horn
2008-02-22 12:28                                                                                     ` David Kastrup
2008-02-22 22:57                                                                                       ` Richard Stallman
2008-02-22 23:14                                                                                         ` Stefan Monnier
2008-02-23  0:03                                                                                           ` Miles Bader
2008-02-23  0:14                                                                                             ` Lennart Borgman (gmail)
2008-02-23  8:04                                                                                             ` Mathias Dahl
2008-02-23  0:04                                                                                         ` Miles Bader
2008-02-23 19:29                                                                                           ` Richard Stallman
2008-02-23  0:14                                                                                         ` Stephen J. Turnbull
2008-02-23  0:21                                                                                           ` Miles Bader
2008-02-23  0:46                                                                                           ` Should M-SPC respect `sentence-end-double-space'? Stephen J. Turnbull
2008-02-23  0:46                                                                                             ` Paul Pogonyshev
2008-02-23  3:23                                                                                               ` Stephen J. Turnbull
2008-02-23  0:52                                                                                             ` Miles Bader
2008-02-23  3:11                                                                                               ` Stephen J. Turnbull
2008-02-23  3:47                                                                                                 ` Miles Bader
2008-02-23  8:33                                                                                                   ` Stephen J. Turnbull
2008-02-23 15:47                                                                                                     ` Stefan Monnier
2008-02-23 17:01                                                                                               ` Juri Linkov
2008-02-21 22:28                                                                   ` Enabling Transient Mark Mode by default Richard Stallman
2008-03-01 22:15                                                                     ` Glenn Morris
2008-03-01 22:40                                                                       ` Kim F. Storm
2008-03-02  2:56                                                                       ` Juri Linkov
2008-03-02 17:25                                                                         ` Richard Stallman
2008-03-02  5:51                                                                       ` Stefan Monnier
2008-03-02 16:09                                                                         ` Juri Linkov
2008-03-02 17:25                                                                       ` Richard Stallman
2008-02-21  9:16                                                           ` Richard Stallman
2008-02-21 12:07                                                             ` Robert J. Chassell
2008-02-20 21:15                                                         ` Stephen J. Turnbull
2008-02-21  9:16                                                           ` Richard Stallman
2008-02-21 15:55                                                             ` Luc Teirlinck
2008-02-22  3:31                                                             ` Stephen J. Turnbull
2008-02-22 22:57                                                               ` Richard Stallman
2008-02-23  0:08                                                                 ` Stephen J. Turnbull
2008-02-21 22:27                                                         ` Richard Stallman
2008-02-20 19:09                                                       ` Drew Adams
2008-02-21  0:10                                                         ` Miles Bader
2008-02-21 22:28                                                           ` Richard Stallman
2008-02-23 11:00                                                           ` Alan Mackenzie
2008-02-20 20:01                                                       ` Tentative diagnosis of TMM's problem. [Re: Enabling Transient Mark Mode by default] Alan Mackenzie
2008-02-20 20:52                                                         ` Stefan Monnier
2008-02-20 22:16                                                           ` Tentative diagnosis of TMM's problem. [Re: Enabling TransientMark " Drew Adams
2008-02-20 22:32                                                             ` Lennart Borgman (gmail)
2008-02-20 22:45                                                               ` Drew Adams
2008-02-21  1:09                                                                 ` David De La Harpe Golden
2008-02-21  1:44                                                                   ` Drew Adams
2008-02-21  8:05                                                               ` Sven Joachim
2008-02-21  0:13                                                             ` Miles Bader
2008-02-21  1:44                                                               ` Drew Adams
2008-02-21  4:56                                                                 ` David De La Harpe Golden
2008-02-21 22:28                                                                 ` Richard Stallman
2008-02-21 17:46                                                               ` Juri Linkov
2008-02-21 22:28                                                               ` Tentative diagnosis of Transient Mark mode's " Richard Stallman
2008-02-21  8:19                                                             ` Tentative diagnosis of TMM's " Alan Mackenzie
2008-02-21  9:43                                                               ` Tentative diagnosis of TMM's problem. [Re: Enabling TransientMarkMode " Drew Adams
2008-02-21 10:54                                                                 ` David Kastrup
2008-02-21 17:10                                                                   ` Drew Adams
2008-02-21 19:28                                                                     ` Sascha Wilde
2008-02-21 21:42                                                                     ` David Kastrup
2008-02-22 11:58                                                                     ` Enabling Transient Mark Mode by default Robert J. Chassell
2008-02-22 14:49                                                                       ` David De La Harpe Golden
2008-02-22 16:37                                                                       ` Stefan Monnier
2008-02-21 10:59                                                                 ` Tentative diagnosis of TMM's problem. [Re: Enabling TransientMarkMode by default] Andreas Schwab
2008-02-21 16:55                                                                   ` Drew Adams
2008-02-21 22:29                                                                 ` Richard Stallman
2008-02-21  8:05                                                           ` Tentative diagnosis of TMM's problem. [Re: Enabling Transient Mark Mode " Alan Mackenzie
2008-02-21 14:54                                                             ` Stefan Monnier
2008-02-21 17:44                                                           ` Tentative diagnosis of TMM's problem Johan Bockgård
2008-02-21 19:21                                                             ` Stefan Monnier
2008-02-21 22:38                                                               ` Johan Bockgård
2008-02-22  1:51                                                                 ` Stefan Monnier
2008-02-21  9:16                                                         ` Tentative diagnosis of TMM's problem. [Re: Enabling Transient Mark Mode by default] Richard Stallman
2008-02-23 11:34                                                           ` Alan Mackenzie
2008-02-24  0:53                                                             ` Richard Stallman
2008-02-20 21:27                                                       ` Enabling Transient Mark Mode by default Juri Linkov
2008-02-19  9:48                                           ` Enabling Transient Mark Mode by default [Re: CUA-mode features and documenation] David Kastrup
2008-02-17 18:11                                     ` CUA-mode features and documenation David De La Harpe Golden
2008-02-14  1:54                               ` Leo
2008-02-13 22:00                 ` change cursor type when idle Richard Stallman
2008-02-14 13:16                   ` Kim F. Storm
2008-02-15  0:03                     ` Richard Stallman
2008-02-12 19:31           ` Juri Linkov
2008-02-12 21:23             ` Miles Bader
2008-02-12 21:42               ` Juri Linkov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ir0sonaa.fsf_-_@kfs-lx.rd.rdm \
    --to=storm@cua.dk \
    --cc=dann@ics.uci.edu \
    --cc=drew.adams@oracle.com \
    --cc=emacs-devel@gnu.org \
    --cc=monnier@iro.umontreal.ca \
    --cc=rms@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).