diff options
| author | Eli Zaretskii | 2002-02-12 18:51:31 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-02-12 18:51:31 +0000 |
| commit | b9e58bf2ee4240046b3ddff5dc0a2209c890cb5f (patch) | |
| tree | b914dc3b45a94bf234dfc636e4895278daac76ac /man | |
| parent | a9d098e0e7436f1965e04e0381c50c2c67d83e2d (diff) | |
| download | emacs-b9e58bf2ee4240046b3ddff5dc0a2209c890cb5f.tar.gz emacs-b9e58bf2ee4240046b3ddff5dc0a2209c890cb5f.zip | |
(Faces): Document the mode-line-inactive face.
(Optional Mode Line): Document the mode-line-in-non-selected-windows
variable.
Diffstat (limited to 'man')
| -rw-r--r-- | man/display.texi | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/man/display.texi b/man/display.texi index 1e143bcd1f6..0b5683ac58b 100644 --- a/man/display.texi +++ b/man/display.texi | |||
| @@ -100,9 +100,14 @@ faces: | |||
| 100 | @item default | 100 | @item default |
| 101 | This face is used for ordinary text that doesn't specify any other face. | 101 | This face is used for ordinary text that doesn't specify any other face. |
| 102 | @item mode-line | 102 | @item mode-line |
| 103 | This face is used for mode lines. By default, it's drawn with shadows | 103 | This face is used for the mode line of the currently selected window. |
| 104 | for a ``raised'' effect on window systems, and drawn as the inverse of | 104 | By default, it's drawn with shadows for a ``raised'' effect on window |
| 105 | the default face on non-windowed terminals. @xref{Display Custom}. | 105 | systems, and drawn as the inverse of the default face on non-windowed |
| 106 | terminals. @xref{Display Custom}. | ||
| 107 | @item mode-line-inactive | ||
| 108 | Like @code{mode-line}, but used for mode lines of the windows other | ||
| 109 | than the selected one (if @code{mode-line-in-non-selected-windows} is | ||
| 110 | non-@code{nil}). | ||
| 106 | @item header-line | 111 | @item header-line |
| 107 | Similar to @code{mode-line} for a window's header line. Most modes | 112 | Similar to @code{mode-line} for a window's header line. Most modes |
| 108 | don't use the header line, but the Info mode does. | 113 | don't use the header line, but the Info mode does. |
| @@ -784,6 +789,19 @@ Alternatively, you can turn off the box attribute in your | |||
| 784 | Emacs.mode-line.AttributeBox: off | 789 | Emacs.mode-line.AttributeBox: off |
| 785 | @end example | 790 | @end example |
| 786 | 791 | ||
| 792 | @cindex non-selected windows, mode line appearance | ||
| 793 | @vindex mode-line-in-non-selected-windows | ||
| 794 | By default, the mode line of non-selected windows is displayed in a | ||
| 795 | different face, called @code{mode-line-inactive}. You can control | ||
| 796 | this behavior by customizing the value of the variable | ||
| 797 | @code{mode-line-in-non-selected-windows}. If its value is | ||
| 798 | non-@code{nil}, non-selected windows are displayed in the | ||
| 799 | @code{mode-line-inactive} face. If the value is @code{t}, the | ||
| 800 | selected window is displayed in the @code{mode-line} face even when | ||
| 801 | you type at the minibuffer prompt. If the value is @code{nil}, all | ||
| 802 | mode lines are displayed in the @code{mode-line} face, even when the | ||
| 803 | window is not selected. The default is @code{t}. | ||
| 804 | |||
| 787 | @node Text Display | 805 | @node Text Display |
| 788 | @section How Text Is Displayed | 806 | @section How Text Is Displayed |
| 789 | @cindex characters (in text) | 807 | @cindex characters (in text) |