aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-03-23 14:41:37 +0000
committerRichard M. Stallman2005-03-23 14:41:37 +0000
commit61ff7bed9c7a85f02cb1f8b6ea187d742e0f5de0 (patch)
treea5c281f2ba17424c497e319725557cdedc819873
parentde4a4c41b308916e3b0da5ef61edeb104dd8060e (diff)
downloademacs-61ff7bed9c7a85f02cb1f8b6ea187d742e0f5de0.tar.gz
emacs-61ff7bed9c7a85f02cb1f8b6ea187d742e0f5de0.zip
(Insert in Picture): Document C-c arrow combos.
(Basic Picture): Clarify erasure.
-rw-r--r--man/picture.texi34
1 files changed, 21 insertions, 13 deletions
diff --git a/man/picture.texi b/man/picture.texi
index dba81df7c2e..465c35143cc 100644
--- a/man/picture.texi
+++ b/man/picture.texi
@@ -90,23 +90,23 @@ line.
90@findex picture-backward-clear-column 90@findex picture-backward-clear-column
91@findex picture-clear-column 91@findex picture-clear-column
92@findex picture-clear-line 92@findex picture-clear-line
93 Picture mode provides erasure instead of deletion and killing of 93 In Picture mode, the commands that normally delete or kill text,
94text. @key{DEL} (@code{picture-backward-clear-column}) replaces the 94instead erase text (replacing it with spaces). @key{DEL}
95preceding character with a space rather than removing it; this moves 95(@code{picture-backward-clear-column}) replaces the preceding
96point backwards. @kbd{C-d} (@code{picture-clear-column}) replaces the 96character with a space rather than removing it; this moves point
97next character or characters with spaces, but does not move point. (If 97backwards. @kbd{C-d} (@code{picture-clear-column}) replaces the next
98you want to clear characters to spaces and move forward over them, use 98character or characters with spaces, but does not move point. (If you
99want to clear characters to spaces and move forward over them, use
99@key{SPC}.) @kbd{C-k} (@code{picture-clear-line}) really kills the 100@key{SPC}.) @kbd{C-k} (@code{picture-clear-line}) really kills the
100contents of lines, but does not delete the newlines from the 101contents of lines, but does not delete the newlines from the buffer.
101buffer.
102 102
103@findex picture-open-line 103@findex picture-open-line
104 To do actual insertion, you must use special commands. @kbd{C-o} 104 To do actual insertion, you must use special commands. @kbd{C-o}
105(@code{picture-open-line}) creates a blank line after the current line; 105(@code{picture-open-line}) creates a blank line after the current
106it never splits a line. @kbd{C-M-o} (@code{split-line}) makes sense in 106line; it never splits a line. @kbd{C-M-o} (@code{split-line}) makes
107Picture mode, so it is not changed. @kbd{C-j} 107sense in Picture mode, so it is not changed. @kbd{C-j}
108(@code{picture-duplicate-line}) inserts below the current line another 108(@code{picture-duplicate-line}) inserts another line with the same
109line with the same contents.@refill 109contents below the current line.
110 110
111@kindex C-c C-d @r{(Picture mode)} 111@kindex C-c C-d @r{(Picture mode)}
112 To do actual deletion in Picture mode, use @kbd{C-w}, @kbd{C-c C-d} 112 To do actual deletion in Picture mode, use @kbd{C-w}, @kbd{C-c C-d}
@@ -141,22 +141,30 @@ character. This is useful for drawing lines in the buffer.
141 141
142@table @kbd 142@table @kbd
143@item C-c < 143@item C-c <
144@itemx C-c @key{LEFT}
144Move left after insertion (@code{picture-movement-left}). 145Move left after insertion (@code{picture-movement-left}).
145@item C-c > 146@item C-c >
147@itemx C-c @key{RIGHT}
146Move right after insertion (@code{picture-movement-right}). 148Move right after insertion (@code{picture-movement-right}).
147@item C-c ^ 149@item C-c ^
150@itemx C-c @key{UP}
148Move up after insertion (@code{picture-movement-up}). 151Move up after insertion (@code{picture-movement-up}).
149@item C-c . 152@item C-c .
153@itemx C-c @key{DOWN}
150Move down after insertion (@code{picture-movement-down}). 154Move down after insertion (@code{picture-movement-down}).
151@item C-c ` 155@item C-c `
156@itemx C-c @key{HOME}
152Move up and left (``northwest'') after insertion (@code{picture-movement-nw}). 157Move up and left (``northwest'') after insertion (@code{picture-movement-nw}).
153@item C-c ' 158@item C-c '
159@itemx C-c @key{PAGEUP}
154Move up and right (``northeast'') after insertion 160Move up and right (``northeast'') after insertion
155(@code{picture-movement-ne}). 161(@code{picture-movement-ne}).
156@item C-c / 162@item C-c /
163@itemx C-c @key{END}
157Move down and left (``southwest'') after insertion 164Move down and left (``southwest'') after insertion
158@*(@code{picture-movement-sw}). 165@*(@code{picture-movement-sw}).
159@item C-c \ 166@item C-c \
167@itemx C-c @key{PAGEDOWN}
160Move down and right (``southeast'') after insertion 168Move down and right (``southeast'') after insertion
161@*(@code{picture-movement-se}). 169@*(@code{picture-movement-se}).
162@end table 170@end table