diff options
| author | Eli Zaretskii | 2001-06-20 07:54:44 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-06-20 07:54:44 +0000 |
| commit | 43f971ab20d136ad9529331c0a9913cde30cf003 (patch) | |
| tree | 0a60df91a94d93192be2c9e6de86f95c2cdbbf9b | |
| parent | 01c2f7d0e6a5a37aba3b1816c7b842b96bda1af3 (diff) | |
| download | emacs-43f971ab20d136ad9529331c0a9913cde30cf003.tar.gz emacs-43f971ab20d136ad9529331c0a9913cde30cf003.zip | |
(Optional Mode Line): Document line-number-display-limit-width.
| -rw-r--r-- | man/display.texi | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/man/display.texi b/man/display.texi index 9580f0269bd..024c6c824d7 100644 --- a/man/display.texi +++ b/man/display.texi | |||
| @@ -666,13 +666,23 @@ before the buffer percentage @var{pos}, with the letter @samp{L} to | |||
| 666 | indicate what it is. @xref{Minor Modes}, for more information about | 666 | indicate what it is. @xref{Minor Modes}, for more information about |
| 667 | minor modes and about how to use this command. | 667 | minor modes and about how to use this command. |
| 668 | 668 | ||
| 669 | @cindex narrowing, and line number display | ||
| 670 | If you have narrowed the buffer (@pxref{Narrowing}), the displayed | ||
| 671 | line number is relative to the accessible portion of the buffer. | ||
| 672 | |||
| 669 | @vindex line-number-display-limit | 673 | @vindex line-number-display-limit |
| 670 | If the buffer is very large (larger than the value of | 674 | If the buffer is very large (larger than the value of |
| 671 | @code{line-number-display-limit}), then the line number doesn't appear. | 675 | @code{line-number-display-limit}), then the line number doesn't appear. |
| 672 | Emacs doesn't compute the line number when the buffer is large, because | 676 | Emacs doesn't compute the line number when the buffer is large, because |
| 673 | that would be too slow. Set it to @code{nil} to remove the limit. If | 677 | that would be too slow. Set it to @code{nil} to remove the limit. |
| 674 | you have narrowed the buffer (@pxref{Narrowing}), the displayed line | 678 | |
| 675 | number is relative to the accessible portion of the buffer. | 679 | @vindex line-number-display-limit-width |
| 680 | Line-number computation can also be slow if the lines in the buffer | ||
| 681 | are too long. For this reason, Emacs normally doesn't display line | ||
| 682 | numbers if the average width, in characters, of lines near point is | ||
| 683 | larger than the value of the variable | ||
| 684 | @code{line-number-display-limit-width}. The default value is 200 | ||
| 685 | characters. | ||
| 676 | 686 | ||
| 677 | @cindex Column Number mode | 687 | @cindex Column Number mode |
| 678 | @cindex mode, Column Number | 688 | @cindex mode, Column Number |