aboutsummaryrefslogtreecommitdiffstats
path: root/man/basic.texi
diff options
context:
space:
mode:
authorChong Yidong2006-01-29 18:37:15 +0000
committerChong Yidong2006-01-29 18:37:15 +0000
commita102b252928c9274ef6c8f0f93b1a905d8cecac0 (patch)
tree2612f74e0f1925cad1cc29688c28d6a765824528 /man/basic.texi
parent391f0754cd21b49db2dbf7384502c29b97d2432f (diff)
downloademacs-a102b252928c9274ef6c8f0f93b1a905d8cecac0.tar.gz
emacs-a102b252928c9274ef6c8f0f93b1a905d8cecac0.zip
* basic.texi (Continuation Lines, Inserting Text): Mention
longlines mode.
Diffstat (limited to 'man/basic.texi')
-rw-r--r--man/basic.texi22
1 files changed, 13 insertions, 9 deletions
diff --git a/man/basic.texi b/man/basic.texi
index 5676a562867..ec0acab19d1 100644
--- a/man/basic.texi
+++ b/man/basic.texi
@@ -80,7 +80,8 @@ the line with the preceding line.
80 80
81 Emacs can split lines automatically when they become too long, if you 81 Emacs can split lines automatically when they become too long, if you
82turn on a special minor mode called @dfn{Auto Fill} mode. 82turn on a special minor mode called @dfn{Auto Fill} mode.
83@xref{Filling}, for how to use Auto Fill mode. 83@xref{Filling}, for how to use Auto Fill mode and other modes for
84@dfn{filling} text.
84 85
85 If you prefer to have text characters replace (overwrite) existing 86 If you prefer to have text characters replace (overwrite) existing
86text rather than shove it to the right, you can enable Overwrite mode, 87text rather than shove it to the right, you can enable Overwrite mode,
@@ -540,17 +541,20 @@ column, some columns at the end of the previous screen line may be
540characters in the ``empty'' columns, just before the @samp{\} 541characters in the ``empty'' columns, just before the @samp{\}
541character that indicates continuation. 542character that indicates continuation.
542 543
543 Sometimes it is nice to have Emacs insert newlines automatically when 544 Continued lines can be rather difficult to read, since each line is
544a line gets too long. Continuation on the screen does not do that. Use 545typically broken in the middle of a word. You can have Emacs insert a
545Auto Fill mode (@pxref{Filling}) if that's what you want. 546newline automatically when a line gets too long, by using Auto Fill
547mode. Another approach, intermediate between continued lines and Auto
548Fill mode, is Long Lines mode, which ensures that wrapping only occurs
549in the spaces between words. @xref{Filling}.
546 550
547@cindex truncation 551@cindex truncation
548@cindex line truncation, and fringes 552@cindex line truncation, and fringes
549 As an alternative to continuation, Emacs can display long lines by 553 Emacs can also display long lines by @dfn{truncation}. This means
550@dfn{truncation}. This means that all the characters that do not fit 554that all the characters that do not fit in the width of the screen or
551in the width of the screen or window do not appear at all. @samp{$} 555window do not appear at all. @samp{$} in the last column or a small
552in the last column or a small straight arrow in the fringe to the 556straight arrow in the fringe to the right of the window indicates a
553right of the window indicates a truncated line. 557truncated line.
554 558
555 @xref{Display Custom}, for more information about line truncation, 559 @xref{Display Custom}, for more information about line truncation,
556and other variables that affect how text is displayed. 560and other variables that affect how text is displayed.