Mercurial > emacs
comparison man/basic.texi @ 35206:054acbd5e9f7
*** empty log message ***
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 10 Jan 2001 15:24:55 +0000 |
parents | d23d6a3e8128 |
children | 3ec035fea54a |
comparison
equal
deleted
inserted
replaced
35205:7132f10900a7 | 35206:054acbd5e9f7 |
---|---|
462 | 462 |
463 @cindex continuation line | 463 @cindex continuation line |
464 @cindex wrapping | 464 @cindex wrapping |
465 @cindex line wrapping | 465 @cindex line wrapping |
466 If you add too many characters to one line without breaking it with | 466 If you add too many characters to one line without breaking it with |
467 @key{RET}, the line will grow to occupy two (or more) lines on the screen, | 467 @key{RET}, the line will grow to occupy two (or more) lines on the |
468 with a @samp{\} at the extreme right margin of all but the last of them. | 468 screen. On terminals, one or more @samp{\} characters are displayed |
469 The @samp{\} says that the following screen line is not really a distinct | 469 at the extreme right margin of all but the last of them. The @samp{\} |
470 line in the text, but just the @dfn{continuation} of a line too long to fit | 470 characters say that the following screen line is not really a distinct |
471 the screen. Continuation is also called @dfn{line wrapping}. | 471 line in the text, but just the @dfn{continuation} of a line too long |
472 to fit the screen. Continuation is also called @dfn{line wrapping}. | |
473 More than one @samp{\} is displayed for a wrapped character which is | |
474 wider than one column. On window systems, small bitmaps are displayed | |
475 in the fringes to the left and right of the window to indicate line | |
476 wrapping. | |
472 | 477 |
473 Sometimes it is nice to have Emacs insert newlines automatically when | 478 Sometimes it is nice to have Emacs insert newlines automatically when |
474 a line gets too long. Continuation on the screen does not do that. Use | 479 a line gets too long. Continuation on the screen does not do that. Use |
475 Auto Fill mode (@pxref{Filling}) if that's what you want. | 480 Auto Fill mode (@pxref{Filling}) if that's what you want. |
476 | 481 |
477 @vindex truncate-lines | 482 @vindex truncate-lines |
478 @findex toggle-truncate-lines | 483 @findex toggle-truncate-lines |
479 @cindex truncation | 484 @cindex truncation |
480 As an alternative to continuation, Emacs can display long lines by | 485 As an alternative to continuation, Emacs can display long lines by |
481 @dfn{truncation}. This means that all the characters that do not fit in | 486 @dfn{truncation}. This means that all the characters that do not fit |
482 the width of the screen or window do not appear at all. They remain in | 487 in the width of the screen or window do not appear at all. They |
483 the buffer, temporarily invisible. @samp{$} is used in the last column | 488 remain in the buffer, temporarily invisible. On terminals, @samp{$} |
484 instead of @samp{\} to inform you that truncation is in effect. | 489 is used in the last column instead of @samp{\} to inform you that |
490 truncation is in effect. On window systems, a small bitmap in the | |
491 fringe to the right of the window indicates line truncation. | |
485 | 492 |
486 Truncation instead of continuation happens whenever horizontal | 493 Truncation instead of continuation happens whenever horizontal |
487 scrolling is in use, and optionally in all side-by-side windows | 494 scrolling is in use, and optionally in all side-by-side windows |
488 (@pxref{Windows}). You can enable truncation for a particular buffer by | 495 (@pxref{Windows}). You can enable truncation for a particular buffer by |
489 setting the variable @code{truncate-lines} to non-@code{nil} in that | 496 setting the variable @code{truncate-lines} to non-@code{nil} in that |