merge trunk
[bpt/emacs.git] / doc / emacs / display.texi
CommitLineData
802b0ea7 1@c This is part of the Emacs manual.
acaf905b 2@c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2012
0419b8d6
GM
3@c Free Software Foundation, Inc.
4
6bf7aab6 5@c See file emacs.texi for copying conditions.
abb9615e 6@node Display
6bf7aab6
DL
7@chapter Controlling the Display
8
41859241
CY
9 Since only part of a large buffer fits in the window, Emacs has to
10show only a part of it. This chapter describes commands and variables
11that let you specify which part of the text you want to see, and how
12the text is displayed.
6bf7aab6
DL
13
14@menu
8838673e 15* Scrolling:: Commands to move text up and down in a window.
e7a3ff06 16* Recentering:: A scroll command that centers the current line.
43d67313 17* Auto Scrolling:: Redisplay scrolls text automatically when needed.
54952612 18* Horizontal Scrolling:: Moving text left and right in a window.
f404f8bc
CY
19* Narrowing:: Restricting display and editing to a portion
20 of the buffer.
a6326082 21* View Mode:: Viewing read-only buffers.
54952612 22* Follow Mode:: Follow mode lets two windows scroll as one.
8838673e 23* Faces:: How to change the display style using faces.
8863a584 24* Colors:: Specifying colors for faces.
44e97401 25* Standard Faces:: The main predefined faces.
d366bd53 26* Text Scale:: Increasing or decreasing text size in a buffer.
b8f3a9e3 27* Font Lock:: Minor mode for syntactic highlighting using faces.
b8f3a9e3 28* Highlight Interactively:: Tell Emacs what text to highlight.
fad78d58 29* Fringes:: Enabling or disabling window fringes.
9d2908a6 30* Displaying Boundaries:: Displaying top and bottom of the buffer.
2d2f6581 31* Useless Whitespace:: Showing possibly spurious trailing whitespace.
6bf7aab6
DL
32* Selective Display:: Hiding lines with lots of indentation.
33* Optional Mode Line:: Optional mode line display features.
34* Text Display:: How text characters are normally displayed.
099bfef9 35* Cursor Display:: Features for displaying the cursor.
9d2908a6
RS
36* Line Truncation:: Truncating lines to fit the screen width instead
37 of continuing them to multiple screen lines.
458db4b6 38* Visual Line Mode:: Word wrap and screen line-based editing.
0015d677 39* Display Custom:: Information on variables for customizing display.
6bf7aab6
DL
40@end menu
41
dc917bd9
RS
42@node Scrolling
43@section Scrolling
550f41cd 44@cindex scrolling
dc917bd9 45
550f41cd
CY
46 If a window is too small to display all the text in its buffer, it
47displays only a portion of it. @dfn{Scrolling} commands change which
48portion of the buffer is displayed.
dc917bd9 49
550f41cd
CY
50 Scrolling ``forward'' or ``up'' advances the portion of the buffer
51displayed in the window; equivalently, it moves the buffer text
52upwards relative to the window. Scrolling ``backward'' or ``down''
e7a3ff06
CY
53displays an earlier portion of the buffer, and moves the text
54downwards relative to the window.
55
56 In Emacs, scrolling ``up'' or ``down'' refers to the direction that
57the text moves in the window, @emph{not} the direction that the window
58moves relative to the text. This terminology was adopted by Emacs
59before the modern meaning of ``scrolling up'' and ``scrolling down''
60became widespread. Hence, the strange result that @key{PageDown}
61scrolls ``up'' in the Emacs sense.
dc917bd9 62
550f41cd
CY
63 The portion of a buffer displayed in a window always contains point.
64If you move point past the bottom or top of the window, scrolling
65occurs automatically to bring it back onscreen (@pxref{Auto
66Scrolling}). You can also scroll explicitly with these commands:
dc917bd9
RS
67
68@table @kbd
dc917bd9 69@item C-v
b5700de6
CY
70@itemx @key{next}
71@itemx @key{PageDown}
61436e9f 72Scroll forward by nearly a full window (@code{scroll-up-command}).
dc917bd9 73@item M-v
b5700de6
CY
74@itemx @key{prior}
75@itemx @key{PageUp}
61436e9f 76Scroll backward (@code{scroll-down-command}).
e7a3ff06
CY
77@end table
78
79@kindex C-v
80@kindex M-v
81@kindex next
82@kindex prior
83@kindex PageDown
84@kindex PageUp
85@findex scroll-up-command
86@findex scroll-down-command
87 @kbd{C-v} (@code{scroll-up-command}) scrolls forward by nearly the
88whole window height. The effect is to take the two lines at the
89bottom of the window and put them at the top, followed by lines that
90were not previously visible. If point was in the text that scrolled
91off the top, it ends up on the window's new topmost line. The
92@key{next} (or @key{PageDown}) key is equivalent to @kbd{C-v}.
93
94 @kbd{M-v} (@code{scroll-down-command}) scrolls backward in a similar
95way. The @key{prior} (or @key{PageUp}) key is equivalent to
96@kbd{M-v}.
97
98@vindex next-screen-context-lines
99 The number of lines of overlap left by these scroll commands is
100controlled by the variable @code{next-screen-context-lines}, whose
101default value is 2. You can supply the commands with a numeric prefix
102argument, @var{n}, to scroll by @var{n} lines; Emacs attempts to leave
103point unchanged, so that the text and point move up or down together.
104@kbd{C-v} with a negative argument is like @kbd{M-v} and vice versa.
105
106@vindex scroll-error-top-bottom
107 By default, these commands signal an error (by beeping or flashing
108the screen) if no more scrolling is possible, because the window has
109reached the beginning or end of the buffer. If you change the
110variable @code{scroll-error-top-bottom} to @code{t}, the command moves
111point to the farthest possible position. If point is already there,
112the command signals an error.
113
114@vindex scroll-preserve-screen-position
115@cindex @code{scroll-command} property
116 Some users like scroll commands to keep point at the same screen
117position, so that scrolling back to the same screen conveniently
118returns point to its original position. You can enable this behavior
119via the variable @code{scroll-preserve-screen-position}. If the value
120is @code{t}, Emacs adjusts point to keep the cursor at the same screen
121position whenever a scroll command moves it off-window, rather than
122moving it to the topmost or bottommost line. With any other
123non-@code{nil} value, Emacs adjusts point this way even if the scroll
124command leaves point in the window. This variable affects all the
125scroll commands documented in this section, as well as scrolling with
b63a8e8e 126the mouse wheel (@pxref{Mouse Commands}); in general, it affects any
e7a3ff06
CY
127command that has a non-@code{nil} @code{scroll-command} property.
128@xref{Property Lists,,, elisp, The Emacs Lisp Reference Manual}.
129
130@vindex scroll-up
131@vindex scroll-down
132@findex scroll-up-line
133@findex scroll-down-line
134 The commands @kbd{M-x scroll-up} and @kbd{M-x scroll-down} behave
135similarly to @code{scroll-up-command} and @code{scroll-down-command},
136except they do not obey @code{scroll-error-top-bottom}. Prior to
137Emacs 24, these were the default commands for scrolling up and down.
138The commands @kbd{M-x scroll-up-line} and @kbd{M-x scroll-down-line}
139scroll the current window by one line at a time. If you intend to use
140any of these commands, you might want to give them key bindings
141(@pxref{Init Rebinding}).
142
143@node Recentering
144@section Recentering
145
146@table @kbd
147@item C-l
148Scroll the selected window so the current line is the center-most text
149line; on subsequent consecutive invocations, make the current line the
150top line, the bottom line, and so on in cyclic order. Possibly
151redisplay the screen too (@code{recenter-top-bottom}).
152
153@item M-x recenter
154Scroll the selected window so the current line is the center-most text
155line. Possibly redisplay the screen too.
156
dc917bd9
RS
157@item C-M-l
158Scroll heuristically to bring useful information onto the screen
159(@code{reposition-window}).
160@end table
161
162@kindex C-l
956c76ef 163@findex recenter-top-bottom
550f41cd
CY
164 The @kbd{C-l} (@code{recenter-top-bottom}) command @dfn{recenters}
165the selected window, scrolling it so that the current screen line is
166exactly in the center of the window, or as close to the center as
167possible.
956c76ef
CY
168
169 Typing @kbd{C-l} twice in a row (@kbd{C-l C-l}) scrolls the window
170so that point is on the topmost screen line. Typing a third @kbd{C-l}
171scrolls the window so that point is on the bottom-most screen line.
41859241 172Each successive @kbd{C-l} cycles through these three positions.
91ed7ea8
CY
173
174@vindex recenter-positions
175 You can change the cycling order by customizing the list variable
176@code{recenter-positions}. Each list element should be the symbol
177@code{top}, @code{middle}, or @code{bottom}, or a number; an integer
41859241 178means to move the line to the specified screen line, while a
91ed7ea8 179floating-point number between 0.0 and 1.0 specifies a percentage of
41859241
CY
180the screen space from the top of the window. The default,
181@code{(middle top bottom)}, is the cycling order described above.
182Furthermore, if you change the variable @code{scroll-margin} to a
183non-zero value @var{n}, @kbd{C-l} always leaves at least @var{n}
184screen lines between point and the top or bottom of the window
185(@pxref{Auto Scrolling}).
956c76ef 186
e7a3ff06
CY
187 You can also give @kbd{C-l} a prefix argument. A plain prefix
188argument, @kbd{C-u C-l}, simply recenters point. A positive argument
189@var{n} puts point @var{n} lines down from the top of the window. An
190argument of zero puts point on the topmost line. A negative argument
191@var{-n} puts point @var{n} lines from the bottom of the window. When
192given an argument, @kbd{C-l} does not clear the screen or cycle
193through different screen positions.
dc917bd9 194
666e158e 195@vindex recenter-redisplay
91ed7ea8 196 If the variable @code{recenter-redisplay} has a non-@code{nil}
550f41cd
CY
197value, each invocation of @kbd{C-l} also clears and redisplays the
198screen; the special value @code{tty} (the default) says to do this on
199text-terminal frames only. Redisplaying is useful in case the screen
200becomes garbled for any reason (@pxref{Screen Garbled}).
201
202@findex recenter
41859241 203 The more primitive command @kbd{M-x recenter} behaves like
550f41cd 204@code{recenter-top-bottom}, but does not cycle among screen positions.
666e158e 205
dc917bd9
RS
206@kindex C-M-l
207@findex reposition-window
41859241
CY
208 @kbd{C-M-l} (@code{reposition-window}) scrolls the current window
209heuristically in a way designed to get useful information onto the
210screen. For example, in a Lisp file, this command tries to get the
dc917bd9
RS
211entire current defun onto the screen if possible.
212
43d67313
RS
213@node Auto Scrolling
214@section Automatic Scrolling
215
956c76ef
CY
216 Emacs performs @dfn{automatic scrolling} when point moves out of the
217visible portion of the text.
218
dc917bd9 219@vindex scroll-conservatively
956c76ef
CY
220 Normally, this centers point vertically within the window. However,
221if you set @code{scroll-conservatively} to a small number @var{n},
222then if you move point just a little off the screen (less than @var{n}
223lines), Emacs scrolls the text just far enough to bring point back on
09725d26
EZ
224screen. By default, @code{scroll-conservatively} is@tie{}0. If you
225set @code{scroll-conservatively} to a large number (larger than 100),
226Emacs will never center point as result of scrolling, even if point
227moves far away from the text previously displayed in the window. With
228such a large value, Emacs will always scroll text just enough for
229bringing point into view, so point will end up at the top or bottom of
230the window, depending on the scroll direction.
231
232@vindex scroll-step
233 The variable @code{scroll-step} determines how many lines to scroll
234the window when point moves off the screen. If moving by that number
235of lines fails to bring point back into view, point is centered
236instead. The default value is zero, which causes point to always be
237centered after scrolling.
dc917bd9
RS
238
239@cindex aggressive scrolling
240@vindex scroll-up-aggressively
241@vindex scroll-down-aggressively
6fdebe93
EZ
242 When the window does scroll by a distance longer than
243@code{scroll-step}, you can control how aggressively it scrolls by
244setting the variables @code{scroll-up-aggressively} and
245@code{scroll-down-aggressively}. The value of
246@code{scroll-up-aggressively} should be either @code{nil}, or a
247fraction @var{f} between 0 and 1. A fraction specifies where on the
248screen to put point when scrolling upward, i.e.@: forward. When point
249goes off the window end, the new start position is chosen to put point
250@var{f} parts of the window height from the bottom margin. Thus,
251larger @var{f} means more aggressive scrolling: more new text is
252brought into view. The default value, @code{nil}, is equivalent to
2530.5.
dc917bd9
RS
254
255 Likewise, @code{scroll-down-aggressively} is used for scrolling
6fdebe93
EZ
256down, i.e.@: backward. The value specifies how far point should be
257placed from the top margin of the window; thus, as with
3b361baf 258@code{scroll-up-aggressively}, a larger value is more aggressive.
dc917bd9 259
09725d26
EZ
260 These two variables are ignored if either @code{scroll-step} or
261@code{scroll-conservatively} are set to a non-zero value.
262
dc917bd9
RS
263@vindex scroll-margin
264 The variable @code{scroll-margin} restricts how close point can come
a162959e
GM
265to the top or bottom of a window (even if aggressive scrolling
266specifies a fraction @var{f} that is larger than the window portion
267between the top and the bottom margins). Its value is a number of screen
956c76ef
CY
268lines; if point comes within that many lines of the top or bottom of
269the window, Emacs performs automatic scrolling. By default,
270@code{scroll-margin} is 0.
dc917bd9
RS
271
272@node Horizontal Scrolling
273@section Horizontal Scrolling
274@cindex horizontal scrolling
275
956c76ef 276@vindex auto-hscroll-mode
dc917bd9 277 @dfn{Horizontal scrolling} means shifting all the lines sideways
956c76ef
CY
278within a window, so that some of the text near the left margin is not
279displayed. When the text in a window is scrolled horizontally, text
280lines are truncated rather than continued (@pxref{Line Truncation}).
281If a window shows truncated lines, Emacs performs automatic horizontal
282scrolling whenever point moves off the left or right edge of the
283screen. To disable automatic horizontal scrolling, set the variable
6308321a
EZ
284@code{auto-hscroll-mode} to @code{nil}. Note that when the automatic
285horizontal scrolling is turned off, if point moves off the edge of the
0be641c0
CY
286screen, the cursor disappears to indicate that. (On text terminals,
287the cursor is left at the edge instead.)
956c76ef
CY
288
289@vindex hscroll-margin
290 The variable @code{hscroll-margin} controls how close point can get
6308321a
EZ
291to the window's edges before automatic scrolling occurs. It is
292measured in columns. For example, if the value is 5, then moving
293point within 5 columns of an edge causes horizontal scrolling away
294from that edge.
956c76ef
CY
295
296@vindex hscroll-step
297 The variable @code{hscroll-step} determines how many columns to
298scroll the window when point gets too close to the edge. Zero, the
299default value, means to center point horizontally within the window.
300A positive integer value specifies the number of columns to scroll by.
301A floating-point number specifies the fraction of the window's width
302to scroll by.
303
304 You can also perform explicit horizontal scrolling with the
305following commands:
dc917bd9
RS
306
307@table @kbd
308@item C-x <
309Scroll text in current window to the left (@code{scroll-left}).
310@item C-x >
311Scroll to the right (@code{scroll-right}).
312@end table
313
314@kindex C-x <
315@kindex C-x >
316@findex scroll-left
317@findex scroll-right
6308321a
EZ
318 @kbd{C-x <} (@code{scroll-left}) scrolls text in the selected window
319to the left by the full width of the window, less two columns. (In
320other words, the text in the window moves left relative to the
321window.) With a numeric argument @var{n}, it scrolls by @var{n}
322columns.
323
324 If the text is scrolled to the left, and point moves off the left
325edge of the window, the cursor will freeze at the left edge of the
326window, until point moves back to the displayed portion of the text.
327This is independent of the current setting of
328@code{auto-hscroll-mode}, which, for text scrolled to the left, only
329affects the behavior at the right edge of the window.
956c76ef
CY
330
331 @kbd{C-x >} (@code{scroll-right}) scrolls similarly to the right.
332The window cannot be scrolled any farther to the right once it is
333displayed normally, with each line starting at the window's left
334margin; attempting to do so has no effect. This means that you don't
335have to calculate the argument precisely for @w{@kbd{C-x >}}; any
336sufficiently large argument will restore the normal display.
dc917bd9
RS
337
338 If you use those commands to scroll a window horizontally, that sets
339a lower bound for automatic horizontal scrolling. Automatic scrolling
340will continue to scroll the window, but never farther to the right
341than the amount you previously set by @code{scroll-left}.
342
f404f8bc
CY
343@node Narrowing
344@section Narrowing
345@cindex widening
346@cindex restriction
347@cindex narrowing
348@cindex accessible portion
349
350 @dfn{Narrowing} means focusing in on some portion of the buffer,
351making the rest temporarily inaccessible. The portion which you can
352still get to is called the @dfn{accessible portion}. Canceling the
353narrowing, which makes the entire buffer once again accessible, is
354called @dfn{widening}. The bounds of narrowing in effect in a buffer
355are called the buffer's @dfn{restriction}.
356
357 Narrowing can make it easier to concentrate on a single subroutine or
358paragraph by eliminating clutter. It can also be used to limit the
359range of operation of a replace command or repeating keyboard macro.
360
361@table @kbd
362@item C-x n n
363Narrow down to between point and mark (@code{narrow-to-region}).
364@item C-x n w
365Widen to make the entire buffer accessible again (@code{widen}).
366@item C-x n p
367Narrow down to the current page (@code{narrow-to-page}).
368@item C-x n d
369Narrow down to the current defun (@code{narrow-to-defun}).
370@end table
371
372 When you have narrowed down to a part of the buffer, that part appears
373to be all there is. You can't see the rest, you can't move into it
374(motion commands won't go outside the accessible part), you can't change
375it in any way. However, it is not gone, and if you save the file all
376the inaccessible text will be saved. The word @samp{Narrow} appears in
377the mode line whenever narrowing is in effect.
378
379@kindex C-x n n
380@findex narrow-to-region
381 The primary narrowing command is @kbd{C-x n n} (@code{narrow-to-region}).
382It sets the current buffer's restrictions so that the text in the current
383region remains accessible, but all text before the region or after the
384region is inaccessible. Point and mark do not change.
385
386@kindex C-x n p
387@findex narrow-to-page
388@kindex C-x n d
389@findex narrow-to-defun
390 Alternatively, use @kbd{C-x n p} (@code{narrow-to-page}) to narrow
391down to the current page. @xref{Pages}, for the definition of a page.
392@kbd{C-x n d} (@code{narrow-to-defun}) narrows down to the defun
393containing point (@pxref{Defuns}).
394
395@kindex C-x n w
396@findex widen
397 The way to cancel narrowing is to widen with @kbd{C-x n w}
398(@code{widen}). This makes all text in the buffer accessible again.
399
400 You can get information on what part of the buffer you are narrowed down
401to using the @kbd{C-x =} command. @xref{Position Info}.
402
403 Because narrowing can easily confuse users who do not understand it,
404@code{narrow-to-region} is normally a disabled command. Attempting to use
405this command asks for confirmation and gives you the option of enabling it;
406if you enable the command, confirmation will no longer be required for
407it. @xref{Disabling}.
408
a6326082
CY
409@node View Mode
410@section View Mode
411@cindex View mode
412@cindex mode, View
413
41859241
CY
414@kindex s @r{(View mode)}
415@kindex SPC @r{(View mode)}
416@kindex DEL @r{(View mode)}
a6326082
CY
417 View mode is a minor mode that lets you scan a buffer by sequential
418screenfuls. It provides commands for scrolling through the buffer
419conveniently but not for changing it. Apart from the usual Emacs
420cursor motion commands, you can type @key{SPC} to scroll forward one
e2aeef63
CY
421windowful, @key{DEL} to scroll backward, and @kbd{s} to start an
422incremental search.
a6326082 423
41859241
CY
424@kindex q @r{(View mode)}
425@kindex e @r{(View mode)}
426@findex View-quit
427@findex View-exit
428 Typing @kbd{q} (@code{View-quit}) disables View mode, and switches
429back to the buffer and position before View mode was enabled. Typing
430@kbd{e} (@code{View-exit}) disables View mode, keeping the current
431buffer and position.
a6326082
CY
432
433@findex view-buffer
434@findex view-file
435 @kbd{M-x view-buffer} prompts for an existing Emacs buffer, switches
436to it, and enables View mode. @kbd{M-x view-file} prompts for a file
437and visits it with View mode enabled.
438
dc917bd9
RS
439@node Follow Mode
440@section Follow Mode
441@cindex Follow mode
442@cindex mode, Follow
443@findex follow-mode
444@cindex windows, synchronizing
445@cindex synchronizing windows
446
447 @dfn{Follow mode} is a minor mode that makes two windows, both
16152b76 448showing the same buffer, scroll as a single tall ``virtual window''.
dc917bd9
RS
449To use Follow mode, go to a frame with just one window, split it into
450two side-by-side windows using @kbd{C-x 3}, and then type @kbd{M-x
451follow-mode}. From then on, you can edit the buffer in either of the
452two windows, or scroll either one; the other window follows it.
453
454 In Follow mode, if you move point outside the portion visible in one
455window and into the portion visible in the other window, that selects
456the other window---again, treating the two as if they were parts of
457one large window.
458
459 To turn off Follow mode, type @kbd{M-x follow-mode} a second time.
460
b8f3a9e3 461@node Faces
8863a584 462@section Text Faces
b8f3a9e3
GM
463@cindex faces
464
d366bd53 465 Emacs can display text in several different styles, called
0015d677 466@dfn{faces}. Each face can specify various @dfn{face attributes},
d366bd53
CY
467such as the font, height, weight, slant, foreground and background
468color, and underlining or overlining. Most major modes assign faces
469to the text automatically, via Font Lock mode. @xref{Font Lock}, for
470more information about how these faces are assigned.
471
472@findex list-faces-display
473 To see what faces are currently defined, and what they look like,
474type @kbd{M-x list-faces-display}. With a prefix argument, this
475prompts for a regular expression, and displays only faces with names
476matching that regular expression (@pxref{Regexps}).
477
35b6586e 478@vindex frame-background-mode
d366bd53 479 It's possible for a given face to look different in different
0be641c0
CY
480frames. For instance, some text terminals do not support all face
481attributes, particularly font, height, and width, and some support a
35b6586e
CY
482limited range of colors. In addition, most Emacs faces are defined so
483that their attributes are different on light and dark frame
484backgrounds, for reasons of legibility. By default, Emacs
485automatically chooses which set of face attributes to display on each
486frame, based on the frame's current background color. However, you
487can override this by giving the variable @code{frame-background-mode}
488a non-@code{nil} value. A value of @code{dark} makes Emacs treat all
489frames as if they have a dark background, whereas a value of
490@code{light} makes it treat all frames as if they have a light
491background.
b8f3a9e3 492
d366bd53
CY
493@cindex background color
494@cindex default face
35b6586e
CY
495 You can customize a face to alter its attributes, and save those
496customizations for future Emacs sessions. @xref{Face Customization},
497for details.
06848b82
CY
498
499 The @code{default} face is the default for displaying text, and all
500of its attributes are specified. Its background color is also used as
2680c309 501the frame's background color. @xref{Colors}.
06848b82
CY
502
503@cindex cursor face
504 Another special face is the @code{cursor} face. On graphical
505displays, the background color of this face is used to draw the text
506cursor. None of the other attributes of this face have any effect;
507the foreground color for text under the cursor is taken from the
508background color of the underlying text. On text terminals, the
509appearance of the text cursor is determined by the terminal, not by
510the @code{cursor} face.
d366bd53
CY
511
512 You can also use X resources to specify attributes of any particular
513face. @xref{Resources}.
956c76ef 514
8863a584
CY
515 Emacs can display variable-width fonts, but some Emacs commands,
516particularly indentation commands, do not account for variable
517character display widths. Therefore, we recommend not using
518variable-width fonts for most faces, particularly those assigned by
519Font Lock mode.
520
521@node Colors
522@section Colors for Faces
523@cindex color name
524@cindex RGB triplet
525
526 Faces can have various foreground and background colors. When you
527specify a color for a face---for instance, when customizing the face
528(@pxref{Face Customization})---you can use either a @dfn{color name}
529or an @dfn{RGB triplet}.
530
531@findex list-colors-display
b7314ef7 532@vindex list-colors-sort
8863a584
CY
533 A color name is a pre-defined name, such as @samp{dark orange} or
534@samp{medium sea green}. To view a list of color names, type @kbd{M-x
b7314ef7
GM
535list-colors-display}. To control the order in which colors are shown,
536customize @code{list-colors-sort}. If you run this command on a
0be641c0
CY
537graphical display, it shows the full range of color names known to
538Emacs (these are the standard X11 color names, defined in X's
539@file{rgb.txt} file). If you run the command on a text terminal, it
540shows only a small subset of colors that can be safely displayed on
541such terminals. However, Emacs understands X11 color names even on
542text terminals; if a face is given a color specified by an X11 color
543name, it is displayed using the closest-matching terminal color.
8863a584
CY
544
545 An RGB triplet is a string of the form @samp{#RRGGBB}. Each of the
546R, G, and B components is a hexadecimal number specifying the
547component's relative intensity, one to four digits long (usually two
548digits are used). The components must have the same number of digits.
549For hexadecimal values A to F, either upper or lower case are
550acceptable.
551
552 The @kbd{M-x list-colors-display} command also shows the equivalent
553RGB triplet for each named color. For instance, @samp{medium sea
554green} is equivalent to @samp{#3CB371}.
555
556@cindex face colors, setting
956c76ef
CY
557@findex set-face-foreground
558@findex set-face-background
8863a584
CY
559 You can change the foreground and background colors of a face with
560@kbd{M-x set-face-foreground} and @kbd{M-x set-face-background}.
561These commands prompt in the minibuffer for a face name and a color,
562with completion, and then set that face to use the specified color.
d366bd53
CY
563They affect the face colors on all frames, but their effects do not
564persist for future Emacs sessions, unlike using the customization
565buffer or X resources. You can also use frame parameters to set
8863a584 566foreground and background colors for a specific frame; @xref{Frame
d366bd53
CY
567Parameters}.
568
43d08eb9
RS
569@node Standard Faces
570@section Standard Faces
571
54952612
RS
572 Here are the standard faces for specifying text appearance. You can
573apply them to specific text when you want the effects they produce.
b8f3a9e3
GM
574
575@table @code
576@item default
54952612 577This face is used for ordinary text that doesn't specify any face.
d366bd53 578Its background color is used as the frame's background color.
43d08eb9 579@item bold
956c76ef 580This face uses a bold variant of the default font.
43d08eb9 581@item italic
956c76ef 582This face uses an italic variant of the default font.
43d08eb9 583@item bold-italic
956c76ef 584This face uses a bold italic variant of the default font.
43d08eb9
RS
585@item underline
586This face underlines text.
587@item fixed-pitch
956c76ef
CY
588This face forces use of a fixed-width font. It's reasonable to
589customize this face to use a different fixed-width font, if you like,
590but you should not make it a variable-width font.
43d08eb9 591@item variable-pitch
956c76ef 592This face forces use of a variable-width font.
3b91a16d
JL
593@item shadow
594This face is used for making the text less noticeable than the surrounding
595ordinary text. Usually this can be achieved by using shades of gray in
596contrast with either black or white default foreground color.
43d08eb9
RS
597@end table
598
599 Here's an incomplete list of faces used to highlight parts of the
600text temporarily for specific purposes. (Many other modes define
601their own faces for this purpose.)
602
603@table @code
604@item highlight
d366bd53
CY
605This face is used for text highlighting in various contexts, such as
606when the mouse cursor is moved over a hyperlink.
43d08eb9 607@item isearch
d366bd53 608This face is used to highlight the current Isearch match
956c76ef 609(@pxref{Incremental Search}).
54952612 610@item query-replace
d366bd53 611This face is used to highlight the current Query Replace match
956c76ef 612(@pxref{Replace}).
43d08eb9 613@item lazy-highlight
d366bd53
CY
614This face is used to highlight ``lazy matches'' for Isearch and Query
615Replace (matches other than the current one).
43d08eb9 616@item region
d366bd53
CY
617This face is used for displaying an active region (@pxref{Mark}).
618When Emacs is built with GTK support, its colors are taken from the
619current GTK theme.
43d08eb9
RS
620@item secondary-selection
621This face is used for displaying a secondary X selection (@pxref{Secondary
622Selection}).
623@item trailing-whitespace
3b91a16d 624The face for highlighting excess spaces and tabs at the end of a line
d366bd53
CY
625when @code{show-trailing-whitespace} is non-@code{nil} (@pxref{Useless
626Whitespace}).
43d08eb9 627@item escape-glyph
d366bd53
CY
628The face for displaying control characters and escape sequences
629(@pxref{Text Display}).
630@item nobreak-space
939db9ac 631The face for displaying ``no-break'' space characters (@pxref{Text
d366bd53 632Display}).
43d08eb9
RS
633@end table
634
d366bd53
CY
635 The following faces control the appearance of parts of the Emacs
636frame:
43d08eb9
RS
637
638@table @code
b8f3a9e3 639@item mode-line
3b91a16d
JL
640This face is used for the mode line of the currently selected window,
641and for menu bars when toolkit menus are not used. By default, it's
54952612 642drawn with shadows for a ``raised'' effect on graphical displays, and
3b91a16d 643drawn as the inverse of the default face on non-windowed terminals.
b9e58bf2
EZ
644@item mode-line-inactive
645Like @code{mode-line}, but used for mode lines of the windows other
646than the selected one (if @code{mode-line-in-non-selected-windows} is
ac6875fc
RS
647non-@code{nil}). This face inherits from @code{mode-line}, so changes
648in that face affect mode lines in all windows.
d545c9fd
JL
649@item mode-line-highlight
650Like @code{highlight}, but used for portions of text on mode lines.
651@item mode-line-buffer-id
652This face is used for buffer identification parts in the mode line.
b8f3a9e3 653@item header-line
54952612
RS
654Similar to @code{mode-line} for a window's header line, which appears
655at the top of a window just as the mode line appears at the bottom.
656Most windows do not have a header line---only some special modes, such
657Info mode, create one.
53abc3bf 658@item vertical-border
0be641c0
CY
659This face is used for the vertical divider between windows on text
660terminals.
3094ad7a 661@item minibuffer-prompt
3b91a16d
JL
662@cindex @code{minibuffer-prompt} face
663@vindex minibuffer-prompt-properties
3094ad7a 664This face is used for the prompt strings displayed in the minibuffer.
3b91a16d
JL
665By default, Emacs automatically adds this face to the value of
666@code{minibuffer-prompt-properties}, which is a list of text
43d67313
RS
667properties used to display the prompt text. (This variable takes
668effect when you enter the minibuffer.)
b8f3a9e3 669@item fringe
3b91a16d 670@cindex @code{fringe} face
b8f3a9e3
GM
671The face for the fringes to the left and right of windows on graphic
672displays. (The fringes are the narrow portions of the Emacs frame
940627fe 673between the text area and the window's right and left borders.)
43d08eb9 674@xref{Fringes}.
b8f3a9e3 675@item cursor
939db9ac
CY
676The @code{:background} attribute of this face specifies the color of
677the text cursor. @xref{Cursor Display}.
d366bd53
CY
678@item tooltip
679This face is used for tooltip text. By default, if Emacs is built
680with GTK support, tooltips are drawn via GTK and this face has no
681effect. @xref{Tooltips}.
b8f3a9e3
GM
682@item mouse
683This face determines the color of the mouse pointer.
d366bd53
CY
684@end table
685
686 The following faces likewise control the appearance of parts of the
0be641c0
CY
687Emacs frame, but only on text terminals, or when Emacs is built on X
688with no toolkit support. (For all other cases, the appearance of the
689respective frame elements is determined by system-wide settings.)
d366bd53
CY
690
691@table @code
692@item scroll-bar
693This face determines the visual appearance of the scroll bar.
694@xref{Scroll Bars}.
b8f3a9e3 695@item tool-bar
54952612 696This face determines the color of tool bar icons. @xref{Tool Bars}.
b8f3a9e3 697@item menu
9e6bb19f
EZ
698@cindex menu bar appearance
699@cindex @code{menu} face, no effect if customized
700@cindex customization of @code{menu} face
701This face determines the colors and font of Emacs's menus. @xref{Menu
d366bd53 702Bars}.
b8f3a9e3
GM
703@end table
704
d366bd53
CY
705@node Text Scale
706@section Text Scale
956c76ef
CY
707
708@cindex adjust buffer face height
709@findex text-scale-adjust
710@kindex C-x C-+
711@kindex C-x C--
712@kindex C-x C-=
713@kindex C-x C-0
714 To increase the height of the default face in the current buffer,
715type @kbd{C-x C-+} or @kbd{C-x C-=}. To decrease it, type @kbd{C-x
716C--}. To restore the default (global) face height, type @kbd{C-x
717C-0}. These keys are all bound to the same command,
718@code{text-scale-adjust}, which looks at the last key typed to
719determine which action to take.
720
721 The final key of these commands may be repeated without the leading
722@kbd{C-x}. For instance, @kbd{C-x C-= C-= C-=} increases the face
d366bd53
CY
723height by three steps. Each step scales the text height by a factor
724of 1.2; to change this factor, customize the variable
725@code{text-scale-mode-step}. As an exception, a numeric argument of 0
726to the @code{text-scale-adjust} command restores the default height,
727similar to typing @kbd{C-x C-0}.
956c76ef
CY
728
729@cindex increase buffer face height
730@findex text-scale-increase
731@cindex decrease buffer face height
732@findex text-scale-decrease
733 The commands @code{text-scale-increase} and
734@code{text-scale-decrease} increase or decrease the height of the
735default face, just like @kbd{C-x C-+} and @kbd{C-x C--} respectively.
736You may find it convenient to bind to these commands, rather than
737@code{text-scale-adjust}.
738
05fbc4a9
MB
739@cindex set buffer face height
740@findex text-scale-set
d366bd53
CY
741 The command @code{text-scale-set} scales the height of the default
742face in the current buffer to an absolute level specified by its
743prefix argument.
05fbc4a9 744
956c76ef 745@findex text-scale-mode
d366bd53
CY
746 The above commands automatically enable the minor mode
747@code{text-scale-mode} if the current font scaling is other than 1,
748and disable it otherwise.
956c76ef 749
b8f3a9e3
GM
750@node Font Lock
751@section Font Lock mode
752@cindex Font Lock mode
753@cindex mode, Font Lock
754@cindex syntax highlighting and coloring
755
8cc11660 756 Font Lock mode is a minor mode, always local to a particular buffer,
d366bd53
CY
757which assigns faces to (or @dfn{fontifies}) the text in the buffer.
758Each buffer's major mode tells Font Lock mode which text to fontify;
759for instance, programming language modes fontify syntactically
760relevant constructs like comments, strings, and function names.
b8f3a9e3
GM
761
762@findex font-lock-mode
d366bd53
CY
763 Font Lock mode is enabled by default. To toggle it in the current
764buffer, type @kbd{M-x font-lock-mode}. A positive numeric argument
765unconditionally enables Font Lock mode, and a negative or zero
766argument disables it.
b8f3a9e3
GM
767
768@findex global-font-lock-mode
769@vindex global-font-lock-mode
166bc0c8
CY
770 Type @kbd{M-x global-font-lock-mode} to toggle Font Lock mode in all
771buffers. To impose this setting for future Emacs sessions, customize
772the variable @code{global-font-lock-mode} (@pxref{Easy
773Customization}), or add the following line to your init file:
b8f3a9e3
GM
774
775@example
c4e8acbc 776(global-font-lock-mode 0)
b8f3a9e3
GM
777@end example
778
d366bd53
CY
779@noindent
780If you have disabled Global Font Lock mode, you can still enable Font
54952612 781Lock for specific major modes by adding the function
6e317956
CY
782@code{font-lock-mode} to the mode hooks (@pxref{Hooks}). For example,
783to enable Font Lock mode for editing C files, you can do this:
c4e8acbc
CY
784
785@example
6e317956 786(add-hook 'c-mode-hook 'font-lock-mode)
c4e8acbc 787@end example
0015d677 788
b8f3a9e3
GM
789 Font Lock mode uses several specifically named faces to do its job,
790including @code{font-lock-string-face}, @code{font-lock-comment-face},
54952612
RS
791and others. The easiest way to find them all is to use @kbd{M-x
792customize-group @key{RET} font-lock-faces @key{RET}}. You can then
793use that customization buffer to customize the appearance of these
794faces. @xref{Face Customization}.
b8f3a9e3 795
b8f3a9e3 796@vindex font-lock-maximum-decoration
d366bd53
CY
797 You can customize the variable @code{font-lock-maximum-decoration}
798to alter the amount of fontification applied by Font Lock mode, for
799major modes that support this feature. The value should be a number
800(with 1 representing a minimal amount of fontification; some modes
801support levels as high as 3); or @code{t}, meaning ``as high as
802possible'' (the default). You can also specify different numbers for
803particular major modes; for example, to use level 1 for C/C++ modes,
804and the default level otherwise, use the value
b8f3a9e3
GM
805
806@example
d366bd53 807'((c-mode . 1) (c++-mode . 1)))
b8f3a9e3
GM
808@end example
809
b8f3a9e3 810@vindex font-lock-beginning-of-syntax-function
e07e854d
EZ
811@cindex incorrect fontification
812@cindex parenthesis in column zero and fontification
813@cindex brace in column zero and fontification
b8f3a9e3
GM
814 Comment and string fontification (or ``syntactic'' fontification)
815relies on analysis of the syntactic structure of the buffer text. For
174862cf
RS
816the sake of speed, some modes, including Lisp mode, rely on a special
817convention: an open-parenthesis or open-brace in the leftmost column
d366bd53 818always defines the beginning of a defun, and is thus always outside
20db1522 819any string or comment. Therefore, you should avoid placing an
d366bd53
CY
820open-parenthesis or open-brace in the leftmost column, if it is inside
821a string or comment. @xref{Left Margin Paren}, for details.
b8f3a9e3 822
6bb2ed9b 823@cindex slow display during scrolling
ae742cb5
CY
824 The variable @code{font-lock-beginning-of-syntax-function}, which is
825always buffer-local, specifies how Font Lock mode can find a position
826guaranteed to be outside any comment or string. In modes which use
827the leftmost column parenthesis convention, the default value of the
828variable is @code{beginning-of-defun}---that tells Font Lock mode to
829use the convention. If you set this variable to @code{nil}, Font Lock
830no longer relies on the convention. This avoids incorrect results,
831but the price is that, in some cases, fontification for a changed text
832must rescan buffer text from the beginning of the buffer. This can
833considerably slow down redisplay while scrolling, particularly if you
834are close to the end of a large buffer.
b8f3a9e3
GM
835
836@findex font-lock-add-keywords
d366bd53
CY
837 Font Lock highlighting patterns already exist for most modes, but
838you may want to fontify additional patterns. You can use the function
839@code{font-lock-add-keywords}, to add your own highlighting patterns
840for a particular mode. For example, to highlight @samp{FIXME:} words
841in C comments, use this:
b8f3a9e3
GM
842
843@example
a152877d
SM
844(add-hook 'c-mode-hook
845 (lambda ()
846 (font-lock-add-keywords nil
ae742cb5
CY
847 '(("\\<\\(FIXME\\):" 1
848 font-lock-warning-face t)))))
b8f3a9e3
GM
849@end example
850
4063fff3 851@findex font-lock-remove-keywords
d366bd53
CY
852@noindent
853To remove keywords from the font-lock highlighting patterns, use the
cd77ce13 854function @code{font-lock-remove-keywords}. @xref{Search-based
956c76ef 855Fontification,,, elisp, The Emacs Lisp Reference Manual}.
4063fff3 856
3be9b0ca
EZ
857@cindex just-in-time (JIT) font-lock
858@cindex background syntax highlighting
859 Fontifying large buffers can take a long time. To avoid large
d366bd53
CY
860delays when a file is visited, Emacs initially fontifies only the
861visible portion of a buffer. As you scroll through the buffer, each
862portion that becomes visible is fontified as soon as it is displayed;
863this type of Font Lock is called @dfn{Just-In-Time} (or @dfn{JIT})
864Lock. You can control how JIT Lock behaves, including telling it to
865perform fontification while idle, by customizing variables in the
956c76ef 866customization group @samp{jit-lock}. @xref{Specific Customization}.
3be9b0ca 867
b8f3a9e3 868@node Highlight Interactively
54952612 869@section Interactive Highlighting
b8f3a9e3
GM
870@cindex highlighting by matching
871@cindex interactive highlighting
54952612 872@cindex Highlight Changes mode
b8f3a9e3 873
54952612 874@findex highlight-changes-mode
956c76ef 875Highlight Changes mode is a minor mode that @dfn{highlights} the parts
d366bd53 876of the buffer that were changed most recently, by giving that text a
956c76ef
CY
877different face. To enable or disable Highlight Changes mode, use
878@kbd{M-x highlight-changes-mode}.
b8f3a9e3 879
54952612 880@cindex Hi Lock mode
b8f3a9e3 881@findex hi-lock-mode
956c76ef
CY
882 Hi Lock mode is a minor mode that highlights text that matches
883regular expressions you specify. For example, you can use it to
884highlight all the references to a certain variable in a program source
885file, highlight certain parts in a voluminous output of some program,
886or highlight certain names in an article. To enable or disable Hi
887Lock mode, use the command @kbd{M-x hi-lock-mode}. To enable Hi Lock
888mode for all buffers, use @kbd{M-x global-hi-lock-mode} or place
889@code{(global-hi-lock-mode 1)} in your @file{.emacs} file.
54952612
RS
890
891 Hi Lock mode works like Font Lock mode (@pxref{Font Lock}), except
892that you specify explicitly the regular expressions to highlight. You
893control them with these commands:
b8f3a9e3
GM
894
895@table @kbd
896@item C-x w h @var{regexp} @key{RET} @var{face} @key{RET}
897@kindex C-x w h
898@findex highlight-regexp
cedf175b 899Highlight text that matches @var{regexp} using face @var{face}
54952612
RS
900(@code{highlight-regexp}). The highlighting will remain as long as
901the buffer is loaded. For example, to highlight all occurrences of
902the word ``whim'' using the default face (a yellow background)
903@kbd{C-x w h whim @key{RET} @key{RET}}. Any face can be used for
904highlighting, Hi Lock provides several of its own and these are
29a483ac
JL
905pre-loaded into a list of default values. While being prompted
906for a face use @kbd{M-n} and @kbd{M-p} to cycle through them.
54952612
RS
907
908You can use this command multiple times, specifying various regular
909expressions to highlight in different ways.
b8f3a9e3
GM
910
911@item C-x w r @var{regexp} @key{RET}
912@kindex C-x w r
913@findex unhighlight-regexp
630acdcc 914Unhighlight @var{regexp} (@code{unhighlight-regexp}).
54952612
RS
915
916If you invoke this from the menu, you select the expression to
917unhighlight from a list. If you invoke this from the keyboard, you
918use the minibuffer. It will show the most recently added regular
919expression; use @kbd{M-p} to show the next older expression and
920@kbd{M-n} to select the next newer expression. (You can also type the
921expression by hand, with completion.) When the expression you want to
922unhighlight appears in the minibuffer, press @kbd{@key{RET}} to exit
923the minibuffer and unhighlight it.
b8f3a9e3
GM
924
925@item C-x w l @var{regexp} @key{RET} @var{face} @key{RET}
926@kindex C-x w l
927@findex highlight-lines-matching-regexp
928@cindex lines, highlighting
929@cindex highlighting lines of text
04d0b662 930Highlight entire lines containing a match for @var{regexp}, using face
b8f3a9e3
GM
931@var{face} (@code{highlight-lines-matching-regexp}).
932
933@item C-x w b
934@kindex C-x w b
935@findex hi-lock-write-interactive-patterns
936Insert all the current highlighting regexp/face pairs into the buffer
937at point, with comment delimiters to prevent them from changing your
54952612
RS
938program. (This key binding runs the
939@code{hi-lock-write-interactive-patterns} command.)
b8f3a9e3 940
3173ce7e
RS
941These patterns are extracted from the comments, if appropriate, if you
942invoke @kbd{M-x hi-lock-find-patterns}, or if you visit the file while
943Hi Lock mode is enabled (since that runs @code{hi-lock-find-patterns}).
b8f3a9e3
GM
944
945@item C-x w i
946@kindex C-x w i
947@findex hi-lock-find-patterns
3173ce7e
RS
948Extract regexp/face pairs from comments in the current buffer
949(@code{hi-lock-find-patterns}). Thus, you can enter patterns
950interactively with @code{highlight-regexp}, store them into the file
951with @code{hi-lock-write-interactive-patterns}, edit them (perhaps
cedf175b 952including different faces for different parenthesized parts of the
3173ce7e
RS
953match), and finally use this command (@code{hi-lock-find-patterns}) to
954have Hi Lock highlight the edited patterns.
b8f3a9e3 955
3173ce7e 956@vindex hi-lock-file-patterns-policy
d439bcd8 957The variable @code{hi-lock-file-patterns-policy} controls whether Hi
0419b8d6
GM
958Lock mode should automatically extract and highlight patterns found in a
959file when it is visited. Its value can be @code{nil} (never highlight),
960@code{ask} (query the user), or a function. If it is a function,
961@code{hi-lock-find-patterns} calls it with the patterns as argument; if
962the function returns non-@code{nil}, the patterns are used. The default
963is @code{ask}. Note that patterns are always highlighted if you call
964@code{hi-lock-find-patterns} directly, regardless of the value of this
965variable.
3173ce7e
RS
966
967@vindex hi-lock-exclude-modes
968Also, @code{hi-lock-find-patterns} does nothing if the current major
969mode's symbol is a member of the list @code{hi-lock-exclude-modes}.
b8f3a9e3
GM
970@end table
971
fad78d58
RS
972@node Fringes
973@section Window Fringes
974@cindex fringes
975
939db9ac
CY
976@findex set-fringe-style
977@findex fringe-mode
978 On graphical displays, each Emacs window normally has narrow
956c76ef
CY
979@dfn{fringes} on the left and right edges. The fringes are used to
980display symbols that provide information about the text in the window.
939db9ac
CY
981You can type @kbd{M-x fringe-mode} to disable the fringes, or modify
982their width. This command affects fringes in all frames; to modify
983fringes on the selected frame only, use @kbd{M-x set-fringe-style}.
fad78d58
RS
984
985 The most common use of the fringes is to indicate a continuation
d366bd53
CY
986line (@pxref{Continuation Lines}). When one line of text is split
987into multiple screen lines, the left fringe shows a curving arrow for
988each screen line except the first, indicating that ``this is not the
16152b76 989real beginning''. The right fringe shows a curving arrow for each
d366bd53 990screen line except the last, indicating that ``this is not the real
16152b76 991end''. If the line's direction is right-to-left (@pxref{Bidirectional
d366bd53 992Editing}), the meanings of the curving arrows in the fringes are
34313041 993swapped.
fad78d58 994
566da2e7 995 The fringes indicate line truncation with short horizontal arrows
fad78d58 996meaning ``there's more text on this line which is scrolled
16152b76 997horizontally out of view''. Clicking the mouse on one of the arrows
d366bd53
CY
998scrolls the display horizontally in the direction of the arrow.
999
1000 The fringes can also indicate other things, such as buffer
1001boundaries (@pxref{Displaying Boundaries}), and where a program you
1002are debugging is executing (@pxref{Debuggers}).
fad78d58 1003
939db9ac
CY
1004@vindex overflow-newline-into-fringe
1005 The fringe is also used for drawing the cursor, if the current line
1006is exactly as wide as the window and point is at the end of the line.
1007To disable this, change the variable
1008@code{overflow-newline-into-fringe} to @code{nil}; this causes Emacs
1009to continue or truncate lines that are exactly as wide as the window.
fad78d58 1010
9d2908a6
RS
1011@node Displaying Boundaries
1012@section Displaying Boundaries
1013
1014@vindex indicate-buffer-boundaries
939db9ac 1015 On graphical displays, Emacs can indicate the buffer boundaries in
d366bd53
CY
1016the fringes. If you enable this feature, the first line and the last
1017line are marked with angle images in the fringes. This can be
1018combined with up and down arrow images which say whether it is
1019possible to scroll the window.
9d2908a6
RS
1020
1021 The buffer-local variable @code{indicate-buffer-boundaries} controls
1022how the buffer boundaries and window scrolling is indicated in the
1023fringes. If the value is @code{left} or @code{right}, both angle and
1024arrow bitmaps are displayed in the left or right fringe, respectively.
1025
1026 If value is an alist, each element @code{(@var{indicator} .
1027@var{position})} specifies the position of one of the indicators.
1028The @var{indicator} must be one of @code{top}, @code{bottom},
1029@code{up}, @code{down}, or @code{t} which specifies the default
1030position for the indicators not present in the alist.
1031The @var{position} is one of @code{left}, @code{right}, or @code{nil}
1032which specifies not to show this indicator.
1033
1034 For example, @code{((top . left) (t . right))} places the top angle
1035bitmap in left fringe, the bottom angle bitmap in right fringe, and
1036both arrow bitmaps in right fringe. To show just the angle bitmaps in
1037the left fringe, but no arrow bitmaps, use @code{((top . left)
1038(bottom . left))}.
1039
fad78d58
RS
1040@node Useless Whitespace
1041@section Useless Whitespace
1042
1043@cindex trailing whitespace
1044@cindex whitespace, trailing
1045@vindex show-trailing-whitespace
1046 It is easy to leave unnecessary spaces at the end of a line, or
1047empty lines at the end of a file, without realizing it. In most
1048cases, this @dfn{trailing whitespace} has no effect, but there are
956c76ef 1049special circumstances where it matters, and it can be a nuisance.
fad78d58 1050
956c76ef
CY
1051 You can make trailing whitespace at the end of a line visible by
1052setting the buffer-local variable @code{show-trailing-whitespace} to
1053@code{t}. Then Emacs displays trailing whitespace, using the face
1054@code{trailing-whitespace}.
fad78d58
RS
1055
1056 This feature does not apply when point is at the end of the line
1057containing the whitespace. Strictly speaking, that is ``trailing
1058whitespace'' nonetheless, but displaying it specially in that case
1059looks ugly while you are typing in new text. In this special case,
1060the location of point is enough to show you that the spaces are
1061present.
1062
1063@findex delete-trailing-whitespace
d366bd53
CY
1064 Type @kbd{M-x delete-trailing-whitespace} to delete all trailing
1065whitespace within the buffer. If the region is active, it deletes all
1066trailing whitespace in the region instead.
fad78d58 1067
23e3383d 1068@vindex indicate-empty-lines
877db12e
RS
1069@cindex unused lines
1070@cindex fringes, and unused line indication
d366bd53
CY
1071 On graphical displays, Emacs can indicate unused lines at the end of
1072the window with a small image in the left fringe (@pxref{Fringes}).
8863a584
CY
1073The image appears for screen lines that do not correspond to any
1074buffer text, so blank lines at the end of the buffer stand out because
1075they lack this image. To enable this feature, set the buffer-local
1076variable @code{indicate-empty-lines} to a non-@code{nil} value. You
1077can enable or disable this feature for all new buffers by setting the
1078default value of this variable, e.g.@: @code{(setq-default
1079indicate-empty-lines t)}.
fad78d58 1080
e490b289
CY
1081@cindex Whitespace mode
1082@cindex mode, Whitespace
1083@findex whitespace-mode
1084@vindex whitespace-style
1085 Whitespace mode is a buffer-local minor mode that lets you
1086``visualize'' many kinds of whitespace in the buffer, by either
1087drawing the whitespace characters with a special face or displaying
1088them as special glyphs. To toggle this mode, type @kbd{M-x
1089whitespace-mode}. The kinds of whitespace visualized are determined
1090by the list variable @code{whitespace-style}. Here is a partial list
1091of possible elements (see the variable's documentation for the full
1092list):
1093
1094@table @code
1095@item face
1096Enable all visualizations which use special faces. This element has a
27e428e7 1097special meaning: if it is absent from the list, none of the other
e490b289
CY
1098visualizations take effect except @code{space-mark}, @code{tab-mark},
1099and @code{newline-mark}.
1100
1101@item trailing
1102Highlight trailing whitespace.
1103
1104@item tabs
1105Highlight tab characters.
1106
1107@item spaces
1108Highlight space and non-breaking space characters.
1109
1110@item lines
1111@vindex whitespace-line-column
1112Highlight lines longer than 80 lines. To change the column limit,
1113customize the variable @code{whitespace-line-column}.
1114
1115@item newline
1116Highlight newlines.
1117
1118@item empty
1119Highlight empty lines.
1120
1121@item space-mark
1122Draw space and non-breaking characters with a special glyph.
1123
1124@item tab-mark
1125Draw tab characters with a special glyph.
1126
1127@item newline-mark
1128Draw newline characters with a special glyph.
1129@end table
1130
6bf7aab6
DL
1131@node Selective Display
1132@section Selective Display
4946337d 1133@cindex selective display
6bf7aab6
DL
1134@findex set-selective-display
1135@kindex C-x $
1136
956c76ef
CY
1137 Emacs has the ability to hide lines indented more than a given
1138number of columns. You can use this to get an overview of a part of a
1139program.
6bf7aab6 1140
d239287a
LT
1141 To hide lines in the current buffer, type @kbd{C-x $}
1142(@code{set-selective-display}) with a numeric argument @var{n}. Then
1143lines with at least @var{n} columns of indentation disappear from the
1144screen. The only indication of their presence is that three dots
1145(@samp{@dots{}}) appear at the end of each visible line that is
1146followed by one or more hidden ones.
6bf7aab6
DL
1147
1148 The commands @kbd{C-n} and @kbd{C-p} move across the hidden lines as
1149if they were not there.
1150
1151 The hidden lines are still present in the buffer, and most editing
1152commands see them as usual, so you may find point in the middle of the
1153hidden text. When this happens, the cursor appears at the end of the
1154previous line, after the three dots. If point is at the end of the
1155visible line, before the newline that ends it, the cursor appears before
1156the three dots.
1157
1158 To make all lines visible again, type @kbd{C-x $} with no argument.
1159
1160@vindex selective-display-ellipses
1161 If you set the variable @code{selective-display-ellipses} to
1162@code{nil}, the three dots do not appear at the end of a line that
1163precedes hidden lines. Then there is no visible indication of the
1164hidden lines. This variable becomes local automatically when set.
1165
0015d677
RS
1166 See also @ref{Outline Mode} for another way to hide part of
1167the text in a buffer.
1168
6bf7aab6
DL
1169@node Optional Mode Line
1170@section Optional Mode Line Features
1171
b213b767
LK
1172@cindex buffer size display
1173@cindex display of buffer size
1174@findex size-indication-mode
1175 The buffer percentage @var{pos} indicates the percentage of the
1176buffer above the top of the window. You can additionally display the
1177size of the buffer by typing @kbd{M-x size-indication-mode} to turn on
1178Size Indication mode. The size will be displayed immediately
1179following the buffer percentage like this:
1180
1181@example
1182@var{POS} of @var{SIZE}
1183@end example
1184
1185@noindent
1186Here @var{SIZE} is the human readable representation of the number of
1187characters in the buffer, which means that @samp{k} for 10^3, @samp{M}
1188for 10^6, @samp{G} for 10^9, etc., are used to abbreviate.
1189
e598186c
RS
1190@cindex line number display
1191@cindex display of line number
6bf7aab6
DL
1192@findex line-number-mode
1193 The current line number of point appears in the mode line when Line
1194Number mode is enabled. Use the command @kbd{M-x line-number-mode} to
1195turn this mode on and off; normally it is on. The line number appears
b213b767 1196after the buffer percentage @var{pos}, with the letter @samp{L} to
79199dd2
AM
1197indicate what it is.
1198
1199@cindex Column Number mode
1200@cindex mode, Column Number
1201@findex column-number-mode
1202 Similarly, you can display the current column number by turning on
1203Column number mode with @kbd{M-x column-number-mode}. The column
1204number is indicated by the letter @samp{C}. However, when both of
1205these modes are enabled, the line and column numbers are displayed in
1206parentheses, the line number first, rather than with @samp{L} and
1207@samp{C}. For example: @samp{(561,2)}. @xref{Minor Modes}, for more
1208information about minor modes and about how to use these commands.
6bf7aab6 1209
43f971ab
EZ
1210@cindex narrowing, and line number display
1211 If you have narrowed the buffer (@pxref{Narrowing}), the displayed
1212line number is relative to the accessible portion of the buffer.
54952612
RS
1213Thus, it isn't suitable as an argument to @code{goto-line}. (Use
1214@code{what-line} command to see the line number relative to the whole
1215file.)
43f971ab 1216
6bf7aab6
DL
1217@vindex line-number-display-limit
1218 If the buffer is very large (larger than the value of
956c76ef
CY
1219@code{line-number-display-limit}), Emacs won't compute the line
1220number, because that would be too slow; therefore, the line number
1221won't appear on the mode-line. To remove this limit, set
1222@code{line-number-display-limit} to @code{nil}.
43f971ab
EZ
1223
1224@vindex line-number-display-limit-width
1225 Line-number computation can also be slow if the lines in the buffer
956c76ef
CY
1226are too long. For this reason, Emacs doesn't display line numbers if
1227the average width, in characters, of lines near point is larger than
1228the value of @code{line-number-display-limit-width}. The default
1229value is 200 characters.
6bf7aab6 1230
6bf7aab6
DL
1231@findex display-time
1232@cindex time (on mode line)
1233 Emacs can optionally display the time and system load in all mode
4f00b8c1
DL
1234lines. To enable this feature, type @kbd{M-x display-time} or customize
1235the option @code{display-time-mode}. The information added to the mode
bb3865e8 1236line looks like this:
6bf7aab6
DL
1237
1238@example
1239@var{hh}:@var{mm}pm @var{l.ll}
1240@end example
1241
1242@noindent
1243@vindex display-time-24hr-format
1244Here @var{hh} and @var{mm} are the hour and minute, followed always by
4f1948eb
EZ
1245@samp{am} or @samp{pm}. @var{l.ll} is the average number, collected
1246for the last few minutes, of processes in the whole system that were
1247either running or ready to run (i.e.@: were waiting for an available
1248processor). (Some fields may be missing if your operating system
1249cannot support them.) If you prefer time display in 24-hour format,
1250set the variable @code{display-time-24hr-format} to @code{t}.
6bf7aab6
DL
1251
1252@cindex mail (on mode line)
72bd7b7b
DL
1253@vindex display-time-use-mail-icon
1254@vindex display-time-mail-face
fad78d58
RS
1255@vindex display-time-mail-file
1256@vindex display-time-mail-directory
6bf7aab6 1257 The word @samp{Mail} appears after the load level if there is mail
939db9ac
CY
1258for you that you have not read yet. On graphical displays, you can
1259use an icon instead of @samp{Mail} by customizing
1260@code{display-time-use-mail-icon}; this may save some space on the
1261mode line. You can customize @code{display-time-mail-face} to make
1262the mail indicator prominent. Use @code{display-time-mail-file} to
1263specify the mail file to check, or set
1264@code{display-time-mail-directory} to specify the directory to check
1265for incoming mail (any nonempty regular file in the directory is
1266considered as ``newly arrived mail'').
6bf7aab6 1267
956c76ef
CY
1268@cindex mail (on mode line)
1269@findex display-battery-mode
1270@vindex display-battery-mode
1271@vindex battery-mode-line-format
1272 When running Emacs on a laptop computer, you can display the battery
1273charge on the mode-line, by using the command
1274@code{display-battery-mode} or customizing the variable
1275@code{display-battery-mode}. The variable
1276@code{battery-mode-line-format} determines the way the battery charge
1277is displayed; the exact mode-line message depends on the operating
1278system, and it usually shows the current battery charge as a
1279percentage of the total charge.
1280
47d7776c 1281@cindex mode line, 3D appearance
bd3ead08
EZ
1282@cindex attributes of mode line, changing
1283@cindex non-integral number of lines in a window
939db9ac 1284 On graphical displays, the mode line is drawn as a 3D box. If you
d366bd53
CY
1285don't like this effect, you can disable it by customizing the
1286@code{mode-line} face and setting its @code{box} attribute to
1287@code{nil}. @xref{Face Customization}.
bd3ead08 1288
b9e58bf2 1289@cindex non-selected windows, mode line appearance
ac6875fc 1290 By default, the mode line of nonselected windows is displayed in a
1c9f5f23 1291different face, called @code{mode-line-inactive}. Only the selected
ac6875fc
RS
1292window is displayed in the @code{mode-line} face. This helps show
1293which window is selected. When the minibuffer is selected, since
1294it has no mode line, the window from which you activated the minibuffer
1295has its mode line displayed using @code{mode-line}; as a result,
1296ordinary entry to the minibuffer does not change any mode lines.
1297
1298@vindex mode-line-in-non-selected-windows
1299 You can disable use of @code{mode-line-inactive} by setting variable
1c9f5f23
KS
1300@code{mode-line-in-non-selected-windows} to @code{nil}; then all mode
1301lines are displayed in the @code{mode-line} face.
b9e58bf2 1302
589a3f9f
RS
1303@vindex eol-mnemonic-unix
1304@vindex eol-mnemonic-dos
1305@vindex eol-mnemonic-mac
1306@vindex eol-mnemonic-undecided
1307 You can customize the mode line display for each of the end-of-line
1308formats by setting each of the variables @code{eol-mnemonic-unix},
1309@code{eol-mnemonic-dos}, @code{eol-mnemonic-mac}, and
54952612 1310@code{eol-mnemonic-undecided} to the strings you prefer.
589a3f9f 1311
6bf7aab6
DL
1312@node Text Display
1313@section How Text Is Displayed
1314@cindex characters (in text)
d366bd53 1315@cindex printing character
6bf7aab6 1316
d366bd53
CY
1317 Most characters are @dfn{printing characters}: when they appear in a
1318buffer, they are displayed literally on the screen. Printing
1319characters include @acronym{ASCII} numbers, letters, and punctuation
1320characters, as well as many non-@acronym{ASCII} characters.
6bf7aab6 1321
956c76ef 1322@vindex tab-width
a3dcc84e 1323@cindex control characters on display
d366bd53
CY
1324 The @acronym{ASCII} character set contains non-printing @dfn{control
1325characters}. Two of these are displayed specially: the newline
1326character (Unicode code point @code{U+000A}) is displayed by starting
1327a new line, while the tab character (@code{U+0009}) is displayed as a
1328space that extends to the next tab stop column (normally every 8
1329columns). The number of spaces per tab is controlled by the
1330buffer-local variable @code{tab-width}, which must have an integer
1331value between 1 and 1000, inclusive. Note that how the tab character
1332in the buffer is displayed has nothing to do with the definition of
1333@key{TAB} as a command.
1334
a3dcc84e
EZ
1335 Other @acronym{ASCII} control characters, whose codes are below
1336@code{U+0020} (octal 40, decimal 32), are displayed as a caret
d366bd53
CY
1337(@samp{^}) followed by the non-control version of the character, with
1338the @code{escape-glyph} face. For instance, the @samp{control-A}
1339character, @code{U+0001}, is displayed as @samp{^A}.
54952612 1340
a3dcc84e 1341@cindex octal escapes
54952612 1342@vindex ctl-arrow
a3dcc84e
EZ
1343 The raw bytes with codes @code{U+0080} (octal 200) through
1344@code{U+009F} (octal 237) are displayed as @dfn{octal escape
1345sequences}, with the @code{escape-glyph} face. For instance,
d366bd53
CY
1346character code @code{U+0098} (octal 230) is displayed as @samp{\230}.
1347If you change the buffer-local variable @code{ctl-arrow} to
a3dcc84e
EZ
1348@code{nil}, the @acronym{ASCII} control characters are also displayed
1349as octal escape sequences instead of caret escape sequences.
6bf7aab6 1350
470a11a3 1351@vindex nobreak-char-display
939db9ac
CY
1352@cindex non-breaking space
1353@cindex non-breaking hyphen
1354@cindex soft hyphen
1355 Some non-@acronym{ASCII} characters have the same appearance as an
1356@acronym{ASCII} space or hyphen (minus) character. Such characters
1357can cause problems if they are entered into a buffer without your
8863a584 1358realization, e.g.@: by yanking; for instance, source code compilers
939db9ac
CY
1359typically do not treat non-@acronym{ASCII} spaces as whitespace
1360characters. To deal with this problem, Emacs displays such characters
1361specially: it displays @code{U+00A0} (no-break space) with the
1362@code{nobreak-space} face, and it displays @code{U+00AD} (soft
1363hyphen), @code{U+2010} (hyphen), and @code{U+2011} (non-breaking
1364hyphen) with the @code{escape-glyph} face. To disable this, change
1365the variable @code{nobreak-char-display} to @code{nil}. If you give
1366this variable a non-@code{nil} and non-@code{t} value, Emacs instead
1367displays such characters as a highlighted backslash followed by a
1368space or hyphen.
b5cced4b 1369
54952612
RS
1370 You can customize the way any particular character code is displayed
1371by means of a display table. @xref{Display Tables,, Display Tables,
1372elisp, The Emacs Lisp Reference Manual}.
1373
0eb025fb
EZ
1374@cindex glyphless characters
1375@cindex characters with no font glyphs
d366bd53
CY
1376 On graphical displays, some characters may have no glyphs in any of
1377the fonts available to Emacs. These @dfn{glyphless characters} are
1378normally displayed as boxes containing the hexadecimal character code.
a3dcc84e
EZ
1379Similarly, on text terminals, characters that cannot be displayed
1380using the terminal encoding (@pxref{Terminal Coding}) are normally
1381displayed as question signs. You can control the display method by
1382customizing the variable @code{glyphless-char-display-control}.
1383@xref{Glyphless Chars,, Glyphless Character Display, elisp, The Emacs
1384Lisp Reference Manual}, for details.
0eb025fb 1385
0015d677
RS
1386@node Cursor Display
1387@section Displaying the Cursor
939db9ac 1388@cindex text cursor
4cb4f3ba 1389
468160b7 1390@vindex visible-cursor
939db9ac
CY
1391 On a text terminal, the cursor's appearance is controlled by the
1392terminal, largely out of the control of Emacs. Some terminals offer
1393two different cursors: a ``visible'' static cursor, and a ``very
1394visible'' blinking cursor. By default, Emacs uses the very visible
1395cursor, and switches to it when you start or resume Emacs. If the
1396variable @code{visible-cursor} is @code{nil} when Emacs starts or
1397resumes, it uses the normal cursor.
1398
1399@cindex cursor face
1400@vindex cursor-type
1401 On a graphical display, many more properties of the text cursor can
1402be altered. To customize its color, change the @code{:background}
1403attribute of the face named @code{cursor} (@pxref{Face
1404Customization}). (The other attributes of this face have no effect;
1405the text shown under the cursor is drawn using the frame's background
1406color.) To change its shape, customize the buffer-local variable
1407@code{cursor-type}; possible values are @code{box} (the default),
1408@code{hollow} (a hollow box), @code{bar} (a vertical bar), @code{(bar
1409. @var{n})} (a vertical bar @var{n} pixels wide), @code{hbar} (a
1410horizontal bar), @code{(hbar . @var{n})} (a horizontal bar @var{n}
1411pixels tall), or @code{nil} (no cursor at all).
468160b7 1412
939db9ac
CY
1413@findex blink-cursor-mode
1414@cindex cursor, blinking
1415@cindex blinking cursor
1416@vindex blink-cursor-alist
1417 To disable cursor blinking, change the variable
1418@code{blink-cursor-mode} to @code{nil} (@pxref{Easy Customization}),
1419or add the line @code{(blink-cursor-mode 0)} to your init file.
1420Alternatively, you can change how the cursor looks when it ``blinks
1421off'' by customizing the list variable @code{blink-cursor-alist}.
1422Each element in the list should have the form @code{(@var{on-type}
1423. @var{off-type})}; this means that if the cursor is displayed as
1424@var{on-type} when it blinks on (where @var{on-type} is one of the
1425cursor types described above), then it is displayed as @var{off-type}
1426when it blinks off.
0015d677
RS
1427
1428@vindex x-stretch-cursor
1429@cindex wide block cursor
939db9ac
CY
1430 Some characters, such as tab characters, are ``extra wide''. When
1431the cursor is positioned over such a character, it is normally drawn
1432with the default character width. You can make the cursor stretch to
1433cover wide characters, by changing the variable
0015d677
RS
1434@code{x-stretch-cursor} to a non-@code{nil} value.
1435
939db9ac
CY
1436@cindex cursor in non-selected windows
1437@vindex cursor-in-non-selected-windows
1438 The cursor normally appears in non-selected windows as a
1439non-blinking hollow box. (For a bar cursor, it instead appears as a
1440thinner bar.) To turn off cursors in non-selected windows, change the
1441variable @code{cursor-in-non-selected-windows} to @code{nil}.
1442
0015d677
RS
1443@findex hl-line-mode
1444@findex global-hl-line-mode
1445@cindex highlight current line
54952612
RS
1446 To make the cursor even more visible, you can use HL Line mode, a
1447minor mode that highlights the line containing point. Use @kbd{M-x
0015d677
RS
1448hl-line-mode} to enable or disable it in the current buffer. @kbd{M-x
1449global-hl-line-mode} enables or disables the same mode globally.
1450
9d2908a6 1451@node Line Truncation
939db9ac 1452@section Line Truncation
0015d677
RS
1453
1454@cindex truncation
1455@cindex line truncation, and fringes
939db9ac
CY
1456 As an alternative to continuation (@pxref{Continuation Lines}),
1457Emacs can display long lines by @dfn{truncation}. This means that all
1458the characters that do not fit in the width of the screen or window do
1459not appear at all. On graphical displays, a small straight arrow in
0be641c0
CY
1460the fringe indicates truncation at either end of the line. On text
1461terminals, this is indicated with @samp{$} signs in the leftmost
1462and/or rightmost columns.
0015d677
RS
1463
1464@vindex truncate-lines
1465@findex toggle-truncate-lines
1466 Horizontal scrolling automatically causes line truncation
1467(@pxref{Horizontal Scrolling}). You can explicitly enable line
1468truncation for a particular buffer with the command @kbd{M-x
1469toggle-truncate-lines}. This works by locally changing the variable
1470@code{truncate-lines}. If that variable is non-@code{nil}, long lines
1471are truncated; if it is @code{nil}, they are continued onto multiple
1472screen lines. Setting the variable @code{truncate-lines} in any way
1473makes it local to the current buffer; until that time, the default
939db9ac 1474value, which is normally @code{nil}, is in effect.
6bf7aab6 1475
939db9ac
CY
1476@vindex truncate-partial-width-windows
1477 If a split window becomes too narrow, Emacs may automatically enable
1478line truncation. @xref{Split Window}, for the variable
1479@code{truncate-partial-width-windows} which controls this.
80174a97 1480
458db4b6
CY
1481@node Visual Line Mode
1482@section Visual Line Mode
1483
1484@cindex word wrap
1485 Another alternative to ordinary line continuation is to use
1486@dfn{word wrap}. Here, each long logical line is divided into two or
1487more screen lines, like in ordinary line continuation. However, Emacs
1488attempts to wrap the line at word boundaries near the right window
1489edge. This makes the text easier to read, as wrapping does not occur
1490in the middle of words.
1491
1492@cindex Visual Line mode
1493@findex visual-line-mode
1494@findex global-visual-line-mode
1495 Word wrap is enabled by Visual Line mode, an optional minor mode.
1496To turn on Visual Line mode in the current buffer, type @kbd{M-x
1497visual-line-mode}; repeating this command turns it off. You can also
1498turn on Visual Line mode using the menu bar: in the Options menu,
1499select the @samp{Line Wrapping in this Buffer} submenu, followed by
1500the @samp{Word Wrap (Visual Line Mode)} menu item. While Visual Line
1501mode is enabled, the mode-line shows the string @samp{wrap} in the
1502mode display. The command @kbd{M-x global-visual-line-mode} toggles
1503Visual Line mode in all buffers.
1504
1505@findex beginning-of-visual-line
1506@findex end-of-visual-line
1507@findex next-logical-line
1508@findex previous-logical-line
1509 In Visual Line mode, some editing commands work on screen lines
1510instead of logical lines: @kbd{C-a} (@code{beginning-of-visual-line})
1511moves to the beginning of the screen line, @kbd{C-e}
1512(@code{end-of-visual-line}) moves to the end of the screen line, and
1513@kbd{C-k} (@code{kill-visual-line}) kills text to the end of the
21927cd7
CY
1514screen line.
1515
1516 To move by logical lines, use the commands @kbd{M-x
1517next-logical-line} and @kbd{M-x previous-logical-line}. These move
1518point to the next logical line and the previous logical line
1519respectively, regardless of whether Visual Line mode is enabled. If
1520you use these commands frequently, it may be convenient to assign key
1521bindings to them. @xref{Init Rebinding}.
458db4b6
CY
1522
1523 By default, word-wrapped lines do not display fringe indicators.
1524Visual Line mode is often used to edit files that contain many long
1525logical lines, so having a fringe indicator for each wrapped line
1526would be visually distracting. You can change this by customizing the
1527variable @code{visual-line-fringe-indicators}.
1528
9d2908a6
RS
1529@node Display Custom
1530@section Customization of Display
80174a97 1531
939db9ac
CY
1532 This section describes variables that control miscellaneous aspects
1533of the appearance of the Emacs screen. Beginning users can skip it.
62ea61af 1534
9d2908a6
RS
1535@vindex visible-bell
1536 If the variable @code{visible-bell} is non-@code{nil}, Emacs attempts
1537to make the whole screen blink when it would normally make an audible bell
1538sound. This variable has no effect if your terminal does not have a way
1539to make the screen blink.
80174a97 1540
9d2908a6
RS
1541@vindex echo-keystrokes
1542 The variable @code{echo-keystrokes} controls the echoing of multi-character
1543keys; its value is the number of seconds of pause required to cause echoing
1544to start, or zero, meaning don't echo at all. The value takes effect when
bfd779dd 1545there is something to echo. @xref{Echo Area}.
80174a97 1546
b4a1a8b2 1547@cindex mouse pointer
62095f01 1548@cindex hourglass pointer display
b4a1a8b2 1549@vindex display-hourglass
62095f01 1550@vindex hourglass-delay
b4a1a8b2
CY
1551 On graphical displays, Emacs displays the mouse pointer as an
1552hourglass if Emacs is busy. To disable this feature, set the variable
1553@code{display-hourglass} to @code{nil}. The variable
1554@code{hourglass-delay} determines the number of seconds of ``busy
1555time'' before the hourglass is shown; the default is 1.
1556
1557@vindex make-pointer-invisible
1558 If the mouse pointer lies inside an Emacs frame, Emacs makes it
1559invisible each time you type a character to insert text, to prevent it
1560from obscuring the text. (To be precise, the hiding occurs when you
1561type a ``self-inserting'' character. @xref{Inserting Text}.) Moving
1562the mouse pointer makes it visible again. To disable this feature,
1563set the variable @code{make-pointer-invisible} to @code{nil}.
1564
1565@vindex underline-minimum-offset
1566@vindex x-underline-at-descent-line
1567 On graphical displays, the variable @code{underline-minimum-offset}
1568determines the minimum distance between the baseline and underline, in
1569pixels, for underlined text. By default, the value is 1; increasing
1570it may improve the legibility of underlined text for certain fonts.
1571(However, Emacs will never draw the underline below the current line
1572area.) The variable @code{x-underline-at-descent-line} determines how
1573to draw underlined text. The default is @code{nil}, which means to
1574draw it at the baseline level of the font; if you change it to
1575@code{nil}, Emacs draws the underline at the same height as the font's
1576descent line.
099bfef9 1577
9d2908a6 1578@vindex overline-margin
b4a1a8b2
CY
1579 The variable @code{overline-margin} specifies the vertical position
1580of an overline above the text, including the height of the overline
1581itself, in pixels; the default is 2.
9d2908a6 1582
a66b12be 1583@findex tty-suppress-bold-inverse-default-colors
0be641c0
CY
1584 On some text terminals, bold face and inverse video together result
1585in text that is hard to read. Call the function
a66b12be
RS
1586@code{tty-suppress-bold-inverse-default-colors} with a non-@code{nil}
1587argument to suppress the effect of bold-face in this case.