Mercurial > hg > xemacs-beta
comparison man/new-users-guide/custom2.texi @ 1738:f43f9ca6c7d9
[xemacs-hg @ 2003-10-10 12:39:27 by stephent]
@var -> @code <87ad89mfs3.fsf_-_@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Fri, 10 Oct 2003 12:39:45 +0000 |
parents | 712931b4b71d |
children |
comparison
equal
deleted
inserted
replaced
1737:68ed93de81b7 | 1738:f43f9ca6c7d9 |
---|---|
91 M-x describe variable | 91 M-x describe variable |
92 @end example | 92 @end example |
93 | 93 |
94 After you type any of the above commands, you will be prompted for a | 94 After you type any of the above commands, you will be prompted for a |
95 variable name in the @dfn{echo area}. Type in the name of the variable, | 95 variable name in the @dfn{echo area}. Type in the name of the variable, |
96 for example, type @var{case-fold-search} @key{RET} | 96 for example, type @code{case-fold-search} @key{RET} |
97 Your window will split into two and you will see the following message | 97 Your window will split into two and you will see the following message |
98 in that window: | 98 in that window: |
99 | 99 |
100 @example | 100 @example |
101 case-fold-search's value is t | 101 case-fold-search's value is t |
217 @example | 217 @example |
218 (setq c-tab-always-indent nil) | 218 (setq c-tab-always-indent nil) |
219 @end example | 219 @end example |
220 | 220 |
221 @noindent | 221 @noindent |
222 The value of the variable @var{c-tab-always-indent} is usually @samp{t} | 222 The value of the variable @code{c-tab-always-indent} is usually @samp{t} |
223 for @samp{true}. When this variable is true, then hitting the @key{TAB} | 223 for @samp{true}. When this variable is true, then hitting the @key{TAB} |
224 key always indents the current line. | 224 key always indents the current line. |
225 | 225 |
226 @item | 226 @item |
227 This expression will turn on the @var{auto-fill-mode} when you are in | 227 This expression will turn on the @var{auto-fill-mode} when you are in |
231 (setq text-mode-hook 'turn-on-auto-fill) | 231 (setq text-mode-hook 'turn-on-auto-fill) |
232 @end example | 232 @end example |
233 | 233 |
234 This mode will automatically break lines when you type a space so that | 234 This mode will automatically break lines when you type a space so that |
235 the lines don't become too long. The length of the lines is controlled | 235 the lines don't become too long. The length of the lines is controlled |
236 by the variable @var{fill-column}. You can set this variable to a value | 236 by the variable @code{fill-column}. You can set this variable to a value |
237 you wish. Look at the documentation for this variable to see its default | 237 you wish. Look at the documentation for this variable to see its default |
238 value. To change the value to 75 for example, use: | 238 value. To change the value to 75 for example, use: |
239 | 239 |
240 @vindex fill-column | 240 @vindex fill-column |
241 @example | 241 @example |
381 Now if you use a command like @kbd{C-x C-p} (@code{mark-page}), the text | 381 Now if you use a command like @kbd{C-x C-p} (@code{mark-page}), the text |
382 will not be highlighted. | 382 will not be highlighted. |
383 | 383 |
384 @item | 384 @item |
385 To control the number of buffers listed when you select the @b{Buffers} | 385 To control the number of buffers listed when you select the @b{Buffers} |
386 menu, you need to set the variable @var{buffers-menu-max-size} to | 386 menu, you need to set the variable @code{buffers-menu-max-size} to |
387 whatever value you wish. For example, if you want 20 buffers to be listed | 387 whatever value you wish. For example, if you want 20 buffers to be listed |
388 when you select @b{Buffers} use: | 388 when you select @b{Buffers} use: |
389 | 389 |
390 @vindex buffers-menu-max-size | 390 @vindex buffers-menu-max-size |
391 @example | 391 @example |