diff options
| author | Chong Yidong | 2006-01-29 18:37:15 +0000 |
|---|---|---|
| committer | Chong Yidong | 2006-01-29 18:37:15 +0000 |
| commit | a102b252928c9274ef6c8f0f93b1a905d8cecac0 (patch) | |
| tree | 2612f74e0f1925cad1cc29688c28d6a765824528 /man/basic.texi | |
| parent | 391f0754cd21b49db2dbf7384502c29b97d2432f (diff) | |
| download | emacs-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.texi | 22 |
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 |
| 82 | turn on a special minor mode called @dfn{Auto Fill} mode. | 82 | turn 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 |
| 86 | text rather than shove it to the right, you can enable Overwrite mode, | 87 | text 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 | |||
| 540 | characters in the ``empty'' columns, just before the @samp{\} | 541 | characters in the ``empty'' columns, just before the @samp{\} |
| 541 | character that indicates continuation. | 542 | character 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 |
| 544 | a line gets too long. Continuation on the screen does not do that. Use | 545 | typically broken in the middle of a word. You can have Emacs insert a |
| 545 | Auto Fill mode (@pxref{Filling}) if that's what you want. | 546 | newline automatically when a line gets too long, by using Auto Fill |
| 547 | mode. Another approach, intermediate between continued lines and Auto | ||
| 548 | Fill mode, is Long Lines mode, which ensures that wrapping only occurs | ||
| 549 | in 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 | 554 | that all the characters that do not fit in the width of the screen or |
| 551 | in the width of the screen or window do not appear at all. @samp{$} | 555 | window do not appear at all. @samp{$} in the last column or a small |
| 552 | in the last column or a small straight arrow in the fringe to the | 556 | straight arrow in the fringe to the right of the window indicates a |
| 553 | right of the window indicates a truncated line. | 557 | truncated line. |
| 554 | 558 | ||
| 555 | @xref{Display Custom}, for more information about line truncation, | 559 | @xref{Display Custom}, for more information about line truncation, |
| 556 | and other variables that affect how text is displayed. | 560 | and other variables that affect how text is displayed. |