diff options
| author | Kim F. Storm | 2004-09-27 22:45:37 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-09-27 22:45:37 +0000 |
| commit | 62ea61af7c3a8753dbdfaabab02b2ba4e17b98cc (patch) | |
| tree | a26d4d27fd23a10ca272e1b0cbfec43f87a18bda /man | |
| parent | e132205a76952e64c9867515d02ccbffef9f5398 (diff) | |
| download | emacs-62ea61af7c3a8753dbdfaabab02b2ba4e17b98cc.tar.gz emacs-62ea61af7c3a8753dbdfaabab02b2ba4e17b98cc.zip | |
(Display Custom) <indicate-buffer-boundaries>:
Align with new functionality.
Diffstat (limited to 'man')
| -rw-r--r-- | man/display.texi | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/man/display.texi b/man/display.texi index 7d5e8ef84e0..b10589da576 100644 --- a/man/display.texi +++ b/man/display.texi | |||
| @@ -1007,22 +1007,26 @@ This can be combined with up and down arrow bitmaps shown at the top | |||
| 1007 | and bottom of the left or right fringe if the window can be scrolled | 1007 | and bottom of the left or right fringe if the window can be scrolled |
| 1008 | in either direction. | 1008 | in either direction. |
| 1009 | 1009 | ||
| 1010 | The buffer-local variable @code{indicate-buffer-boundaries} controls | 1010 | The buffer-local variable @code{indicate-buffer-boundaries} controls |
| 1011 | how the buffer boundaries and window scrolling is indicated in the | 1011 | how the buffer boundaries and window scrolling is indicated in the |
| 1012 | fringes. | 1012 | fringes. |
| 1013 | 1013 | ||
| 1014 | If the value is @code{left} or @code{right}, both angle and arrow | 1014 | If the value is @code{left} or @code{right}, both angle and arrow |
| 1015 | bitmaps are displayed in the left or right fringe, respectively. | 1015 | bitmaps are displayed in the left or right fringe, respectively. |
| 1016 | Any other non-@code{nil} value causes the bitmap on the top line to be | 1016 | |
| 1017 | displayed in the left fringe, and the bitmap on the bottom line in the | 1017 | If value is an alist, each element @code{(@var{indicator} . |
| 1018 | right fringe. | 1018 | @var{position})} specifies the position of one of the indicators. |
| 1019 | 1019 | The @var{indicator} must be one of @code{top}, @code{bottom}, | |
| 1020 | If value is a cons @code{(angles . arrows)}, the car specifies the | 1020 | @code{up}, @code{down}, or @code{t} which specifies the default |
| 1021 | position of the angle bitmaps, and the cdr specifies the position of | 1021 | position for the indicators not present in the alist. |
| 1022 | the arrow bitmaps. For example, @code{(t . right)} places the top | 1022 | The @var{position} is one of @code{left}, @code{right}, or @code{ni} |
| 1023 | angle bitmap in left fringe, the bottom angle bitmap in right fringe, | 1023 | which specifies not to show this indicator. |
| 1024 | and both arrow bitmaps in right fringe. To show just the angle | 1024 | |
| 1025 | bitmaps in the left fringe, but no arrow bitmaps, use @code{(left . nil)}. | 1025 | For example, @code{((top . left) (t . right))} places the top angle |
| 1026 | bitmap in left fringe, the bottom angle bitmap in right fringe, and | ||
| 1027 | both arrow bitmaps in right fringe. To show just the angle bitmaps in | ||
| 1028 | the left fringe, but no arrow bitmaps, use @code{((top . left) | ||
| 1029 | (bottom . left))}. | ||
| 1026 | 1030 | ||
| 1027 | @vindex default-indicate-buffer-boundaries | 1031 | @vindex default-indicate-buffer-boundaries |
| 1028 | The value of the variable @code{default-indicate-buffer-boundaries} | 1032 | The value of the variable @code{default-indicate-buffer-boundaries} |