comparison doc/lispref/minibuf.texi @ 103273:c32ec20d0ab5

* abbrevs.texi (Abbrev Mode): abbrev-mode is an option. * backups.texi (Making Backups): backup-directory-alist and make-backup-file-name-function are options. (Auto-Saving): auto-save-list-file-prefix is an option. * buffers.texi (Killing Buffers): buffer-offer-save is an option. * display.texi (Refresh Screen): no-redraw-on-reenter is an option. (Echo Area Customization): echo-keystrokes is an option. (Selective Display): selective-display-ellipses is an option. (Temporary Displays): temp-buffer-show-function is an option. (Face Attributes): underline-minimum-offset and x-bitmap-file-path are options. (Font Selection): face-font-family-alternatives, face-font-selection-order, face-font-registry-alternatives, and scalable-fonts-allowed are options. (Fringe Indicators): indicate-buffer-boundaries is an option. (Fringe Cursors): overflow-newline-into-fringe is an option. (Scroll Bars): scroll-bar-mode is an option. * eval.texi (Eval): max-lisp-eval-depth is an option. * files.texi (Visiting Functions): find-file-hook is an option. (Directory Names): directory-abbrev-alist is an option. (Unique File Names): temporary-file-directory and small-temporary-file-directory are options. * frames.texi (Initial Parameters): initial-frame-alist, minibuffer-frame-alist and default-frame-alist are options. (Cursor Parameters): blink-cursor-alist and cursor-in-non-selected-windows ar options. (Window System Selections): selection-coding-system is an option. (Display Feature Testing): display-mm-dimensions-alist is an option. * help.texi (Help Functions): help-char and help-event-list are options. * keymaps.texi (Functions for Key Lookup): meta-prefix-char is an option. * minibuf.texi (Minibuffer History): history-length and history-delete-duplicates are options. (High-Level Completion): read-buffer-function and read-buffer-completion-ignore-case are options. (Reading File Names): read-file-name-completion-ignore-case is an option. * modes.texi (Mode Line Top): mode-line-format is an option. (Mode Line Variables): mode-line-position and mode-line-modes are options. * nonascii.texi (Text Representations): enable-multibyte-characters is an option. (Default Coding Systems): auto-coding-regexp-alist, file-coding-system-alist, auto-coding-alist and auto-coding-functions are options. (Specifying Coding Systems): inhibit-eol-conversion is an option. * os.texi (Init File): site-run-file is an option. (System Environment): mail-host-address is an option. (User Identification): user-mail-address is an option. (Terminal Output): baud-rate is an option. * positions.texi (Word Motion): words-include-escapes is an option. * searching.texi (Standard Regexps): page-delimiter, paragraph-separate, paragraph-separate and sentence-end are options. * text.texi (Margins): left-margin and fill-nobreak-predicate are options. * variables.texi (Local Variables): max-specpdl-size is an option. * windows.texi (Choosing Window): split-window-preferred-function, special-display-function and display-buffer-function are options.
author Martin Rudalics <rudalics@gmx.at>
date Thu, 21 May 2009 15:31:31 +0000
parents b269cabac20c
children 363ad3cbabd0
comparison
equal deleted inserted replaced
103272:aeb321cc874b 103273:c32ec20d0ab5
506 This lets Lisp programs explicitly manage input history by using 506 This lets Lisp programs explicitly manage input history by using
507 @code{add-to-history}. By default, @code{history-add-new-input} is 507 @code{add-to-history}. By default, @code{history-add-new-input} is
508 set to a non-@code{nil} value. 508 set to a non-@code{nil} value.
509 @end defvar 509 @end defvar
510 510
511 @defvar history-length 511 @defopt history-length
512 The value of this variable specifies the maximum length for all 512 The value of this variable specifies the maximum length for all
513 history lists that don't specify their own maximum lengths. If the 513 history lists that don't specify their own maximum lengths. If the
514 value is @code{t}, that means there no maximum (don't delete old 514 value is @code{t}, that means there no maximum (don't delete old
515 elements). The value of @code{history-length} property of the history 515 elements). The value of @code{history-length} property of the history
516 list variable's symbol, if set, overrides this variable for that 516 list variable's symbol, if set, overrides this variable for that
517 particular history list. 517 particular history list.
518 @end defvar 518 @end defopt
519 519
520 @defvar history-delete-duplicates 520 @defopt history-delete-duplicates
521 If the value of this variable is @code{t}, that means when adding a 521 If the value of this variable is @code{t}, that means when adding a
522 new history element, all previous identical elements are deleted. 522 new history element, all previous identical elements are deleted.
523 @end defvar 523 @end defopt
524 524
525 Here are some of the standard minibuffer history list variables: 525 Here are some of the standard minibuffer history list variables:
526 526
527 @defvar minibuffer-history 527 @defvar minibuffer-history
528 The default history list for minibuffer history input. 528 The default history list for minibuffer history input.
1186 @result{} "minibuffer.texi" 1186 @result{} "minibuffer.texi"
1187 @end group 1187 @end group
1188 @end example 1188 @end example
1189 @end defun 1189 @end defun
1190 1190
1191 @defvar read-buffer-function 1191 @defopt read-buffer-function
1192 This variable specifies how to read buffer names. For example, if you 1192 This variable specifies how to read buffer names. For example, if you
1193 set this variable to @code{iswitchb-read-buffer}, all Emacs commands 1193 set this variable to @code{iswitchb-read-buffer}, all Emacs commands
1194 that call @code{read-buffer} to read a buffer name will actually use the 1194 that call @code{read-buffer} to read a buffer name will actually use the
1195 @code{iswitchb} package to read it. 1195 @code{iswitchb} package to read it.
1196 @end defvar 1196 @end defopt
1197 1197
1198 @defvar read-buffer-completion-ignore-case 1198 @defopt read-buffer-completion-ignore-case
1199 If this variable is non-@code{nil}, @code{read-buffer} ignores case 1199 If this variable is non-@code{nil}, @code{read-buffer} ignores case
1200 when performing completion. 1200 when performing completion.
1201 @end defvar 1201 @end defopt
1202 1202
1203 @defun read-command prompt &optional default 1203 @defun read-command prompt &optional default
1204 This function reads the name of a command and returns it as a Lisp 1204 This function reads the name of a command and returns it as a Lisp
1205 symbol. The argument @var{prompt} is used as in 1205 symbol. The argument @var{prompt} is used as in
1206 @code{read-from-minibuffer}. Recall that a command is anything for 1206 @code{read-from-minibuffer}. Recall that a command is anything for
1440 arguments as @code{read-file-name}. When @code{read-file-name} is 1440 arguments as @code{read-file-name}. When @code{read-file-name} is
1441 called, it calls this function with the supplied arguments instead of 1441 called, it calls this function with the supplied arguments instead of
1442 doing its usual work. 1442 doing its usual work.
1443 @end defvar 1443 @end defvar
1444 1444
1445 @defvar read-file-name-completion-ignore-case 1445 @defopt read-file-name-completion-ignore-case
1446 If this variable is non-@code{nil}, @code{read-file-name} ignores case 1446 If this variable is non-@code{nil}, @code{read-file-name} ignores case
1447 when performing completion. 1447 when performing completion.
1448 @end defvar 1448 @end defopt
1449 1449
1450 @defun read-directory-name prompt &optional directory default require-match initial 1450 @defun read-directory-name prompt &optional directory default require-match initial
1451 This function is like @code{read-file-name} but allows only directory 1451 This function is like @code{read-file-name} but allows only directory
1452 names as completion possibilities. 1452 names as completion possibilities.
1453 1453