+2008-09-08 Juanma Barranquero <lekktu@gmail.com>
+
+ * ido.el (ido-file-internal): Fix typo in prompt.
+ (ido-merge-ftp-work-directories, ido-max-work-file-list): Doc fixes.
+ (ido-max-prospects, ido-max-file-prompt-width, ido-ignore-buffers)
+ (ido-enable-prefix, ido-setup-hook, ido-rewrite-file-prompt-functions)
+ (ido-magic-forward-char, ido-magic-delete-char, ido-pop-dir):
+ Fix typos in docstrings.
+
2008-09-08 Martin Rudalics <rudalics@gmx.at>
* help-fns.el (describe-function-1): Don't print extra newline
* complete.el (PC-do-completion): Don't replace buffer
contents (bug#227).
-2008-09-05 Juanma Barranquero <lekktu@gmail.com>
+2008-09-07 Juanma Barranquero <lekktu@gmail.com>
* loadhist.el (unload-feature-special-hooks):
Add `choose-completion-string-functions'.
* add-log.el (change-log-default-name): Autoload safety.
-2008-09-05 Wilson Snyder <wsnyder@wsnyder.org>
+2008-09-05 Wilson Snyder <wsnyder@wsnyder.org>
* verilog-mode.el (verilog-library-extensions): Enable .sv
filename extensions to call verilog-mode.
"*List of regexps or functions matching buffer names to ignore.
For example, traditional behavior is not to list buffers whose names begin
with a space, for which the regexp is `\\` '. See the source file for
-example functions that filter buffernames."
+example functions that filter buffer names."
:type '(repeat (choice regexp function))
:group 'ido)
(defcustom ido-enable-prefix nil
"*Non-nil means only match if the entered text is a prefix of file name.
-This behavior is like the standard emacs-completion.
+This behavior is like the standard Emacs completion.
If nil, match if the entered text is an arbitrary substring.
Value can be toggled within `ido' using `ido-toggle-prefix'."
:type 'boolean
:group 'ido)
(defcustom ido-max-prospects 12
- "*Non-zero means that the prospect list will be limited to than number of items.
+ "*Non-zero means that the prospect list will be limited to that number of items.
For a long list of prospects, building the full list for the minibuffer can take a
non-negligible amount of time; setting this variable reduces that time."
:type 'integer
:group 'ido)
(defcustom ido-max-file-prompt-width 0.35
- "*Non-zero means that the prompt string be limited to than number of characters.
+ "*Non-zero means that the prompt string be limited to that number of characters.
If value is a floating point number, it specifies a fraction of the frame width."
:type '(choice
(integer :tag "Characters" :value 20)
:group 'ido)
(defcustom ido-merge-ftp-work-directories nil
- "*If nil means merging ignores ftp file names in the work directory list."
+ "*If nil, merging ignores ftp file names in the work directory list."
:type 'boolean
:group 'ido)
(defcustom ido-max-work-file-list 10
"*Maximum number of names of recently opened files to record.
-This is the list the file names (sans directory) which have most recently
+This is the list of the file names (sans directory) which have most recently
been opened. See `ido-work-file-list' and `ido-save-directory-list-file'."
:type 'integer
:group 'ido)
(defcustom ido-setup-hook nil
"*Hook run after the ido variables and keymap have been setup.
The dynamic variable `ido-cur-item' contains the current type of item that
-is read by ido, possible values are file, dir, buffer, and list.
+is read by ido; possible values are file, dir, buffer, and list.
Additional keys can be defined in `ido-completion-map'."
:type 'hook
:group 'ido)
max-width - the max width of the resulting dirname; nil means no limit
prompt - the basic prompt (e.g. \"Find File: \")
literal - the string shown if doing \"literal\" find; set to nil to omit
- vc-off - the string shown if version control is inhibited; set to nit to omit
+ vc-off - the string shown if version control is inhibited; set to nil to omit
prefix - either nil or a fixed prefix for the dirname
The following variables are available, but should not be changed:
(ido-record-command method dirname)
(ido-record-work-directory)
(funcall method dirname))
- ((y-or-n-p (format "Directory %s does not exist. Create it? " filename))
+ ((y-or-n-p (format "Directory %s does not exist. Create it? " filename))
(ido-record-command method dirname)
(ido-record-work-directory dirname)
(make-directory-internal dirname)
(defun ido-magic-forward-char (arg)
"Move forward in user input or perform magic action.
If no user input is present, or at end of input, perform magic actions:
-C-x C-b ... C-f switch to ido-find-file.
-C-x C-f ... C-f fallback to non-ido find-file.
-C-x C-d ... C-f fallback to non-ido brief dired.
-C-x d ... C-f fallback to non-ido dired."
+C-x C-b ... C-f switch to `ido-find-file'.
+C-x C-f ... C-f fallback to non-ido `find-file'.
+C-x C-d ... C-f fallback to non-ido brief `dired'.
+C-x d ... C-f fallback to non-ido `dired'."
(interactive "P")
(cond
((or arg (not (eobp)))
(defun ido-magic-delete-char (arg)
"Delete following char in user input or perform magic action.
If at end of user input, perform magic actions:
-C-x C-f ... C-d enter dired on current directory."
+C-x C-f ... C-d enter `dired' on current directory."
(interactive "P")
(cond
((or arg (not (eobp)))
(defun ido-pop-dir (arg)
"Pop directory from input stack back to input.
-With \\[universal-argument], pop all element."
+With \\[universal-argument], pop all elements."
(interactive "P")
(when ido-input-stack
(setq ido-exit (if arg 'pop-all 'pop))