diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-11-08 09:46:30 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-11-08 09:46:30 +0000 |
commit | a09e21bfbd21a0b674acd0b799d6ec369fd383e1 (patch) | |
tree | 0a0c66272b6ffb74e7bbb58eb384eb049662448d /lisp/ido.el | |
parent | c5a31d8b6f0ffd1087367389f7e19bcb0b2c0ddd (diff) | |
download | emacs-a09e21bfbd21a0b674acd0b799d6ec369fd383e1.tar.gz |
(ido-ignore-extensions, ido-show-dot-for-dired, ido-max-dir-file-cache,
ido-decorations, ido-rewrite-file-prompt-functions, ido-use-mycompletion-depth,
ido-magic-backward-char, ido-enter-dired, ido-enter-insert-buffer,
ido-enter-insert-file, ido-dired, ido-list-directory, ido-first-match,
ido-only-match, ido-subdir, ido-indicator): Fix typos in docstrings.
(ido-buffer-internal, ido-completion-help): Fix typos in messages.
(ido-read-internal): Fix typo in error message.
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 480b76cd68c..933177f5f22 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -404,13 +404,13 @@ example functions that filter filenames." :group 'ido) (defcustom ido-ignore-extensions t - "*Non-nil means ignore files in completion-ignored-extensions list." + "*Non-nil means ignore files in `completion-ignored-extensions' list." :type 'boolean :group 'ido) (defcustom ido-show-dot-for-dired nil "*Non-nil means to always put . as the first item in file name lists. -This allows the current directory to be opened immediate with `dired'." +This allows the current directory to be opened immediately with `dired'." :type 'boolean :group 'ido) @@ -714,7 +714,7 @@ When a (partial) file name matches this regexp, merging is inhibited." (defcustom ido-max-dir-file-cache 100 "*Maximum number of working directories to be cached. -This is the size of the cache of file-name-all-completions results. +This is the size of the cache of `file-name-all-completions' results. Each cache entry is time stamped with the modification time of the directory. Some systems, like Windows, have unreliable directory modification times, so you may choose to disable caching on such @@ -777,7 +777,7 @@ Obsolete. Set 3rd element of `ido-decorations' instead." "*List of strings used by ido to display the alternatives in the minibuffer. There are 10 elements in this list: 1st and 2nd elements are used as brackets around the prospect list, -3rd element is the separator between prospects (ignored if ido-separator is set), +3rd element is the separator between prospects (ignored if `ido-separator' is set), 4th element is the string inserted at the end of a truncated list of prospects, 5th and 6th elements are used as brackets around the common match string which can be completed using TAB, @@ -795,13 +795,13 @@ subdirs in the alternatives." :group 'ido) (defface ido-first-match '((t (:bold t))) - "*Font used by ido for highlighting first match." + "*Face used by ido for highlighting first match." :group 'ido) (defface ido-only-match '((((class color)) (:foreground "ForestGreen")) (t (:italic t))) - "*Font used by ido for highlighting only match." + "*Face used by ido for highlighting only match." :group 'ido) (defface ido-subdir '((((min-colors 88) (class color)) @@ -809,7 +809,7 @@ subdirs in the alternatives." (((class color)) (:foreground "red")) (t (:underline t))) - "*Font used by ido for highlighting subdirs in the alternatives." + "*Face used by ido for highlighting subdirs in the alternatives." :group 'ido) (defface ido-indicator '((((min-colors 88) (class color)) @@ -821,7 +821,7 @@ subdirs in the alternatives." :background "red" :width condensed)) (t (:inverse-video t))) - "*Font used by ido for highlighting its indicators." + "*Face used by ido for highlighting its indicators." :group 'ido) (defface ido-incomplete-regexp @@ -864,7 +864,7 @@ variables: prefix - either nil or a fixed prefix for the dirname The following variables are available, but should not be changed: - ido-current-directory - the unabbreviated directory name + `ido-current-directory' - the unabbreviated directory name item - equals `file' or `dir' depending on the current mode." :type 'hook :group 'ido) @@ -1034,8 +1034,8 @@ selected.") (defvar ido-use-mycompletion-depth 0 "Non-nil means use `ido' completion feedback. -Is set by ido functions to the current minibuffer-depth, so that -it doesn't interfere with other minibuffer usage.") +Is set by ido functions to the current `minibuffer-depth', +so that it doesn't interfere with other minibuffer usage.") (defvar ido-incomplete-regexp nil "Non-nil if an incomplete regexp is entered.") @@ -2044,7 +2044,7 @@ If INITIAL is non-nil, it specifies the initial input string." (not (if ido-directory-too-big (file-exists-p (concat ido-current-directory ido-final-text)) (ido-existing-item-p)))) - (error "must specify valid item")) + (error "Must specify valid item")) (t (setq ido-selected @@ -2163,7 +2163,7 @@ If INITIAL is non-nil, it specifies the initial input string." ;; buffer doesn't exist ((eq ido-create-new-buffer 'never) - (message "no buffer matching `%s'" buf)) + (message "No buffer matching `%s'" buf)) ((and (eq ido-create-new-buffer 'prompt) (not (y-or-n-p (format "No buffer matching `%s', create one? " buf)))) @@ -2521,10 +2521,10 @@ C-x d ... C-f fallback to non-ido dired." (defun ido-magic-backward-char () "Move backward in user input or perform magic action. If no user input is present, or at start of input, perform magic actions: -C-x C-f C-b switch to ido-switch-buffer. -C-x C-d C-b switch to ido-switch-buffer. -C-x d C-b switch to ido-switch-buffer. -C-x C-b C-b fallback to non-ido switch-to-buffer." +C-x C-f C-b switch to `ido-switch-buffer'. +C-x C-d C-b switch to `ido-switch-buffer'. +C-x d C-b switch to `ido-switch-buffer'. +C-x C-b C-b fallback to non-ido `switch-to-buffer'." (interactive) (cond ((> (point) (minibuffer-prompt-end)) @@ -2658,19 +2658,19 @@ If no buffer or file exactly matching the prompt exists, maybe create a new one. (exit-minibuffer)) (defun ido-enter-dired () - "Drop into dired from file switching." + "Drop into `dired' from file switching." (interactive) (setq ido-exit 'dired) (exit-minibuffer)) (defun ido-enter-insert-buffer () - "Drop into insert buffer from insert file." + "Drop into `insert-buffer' from insert file." (interactive) (setq ido-exit 'insert-buffer) (exit-minibuffer)) (defun ido-enter-insert-file () - "Drop into insert file from insert buffer." + "Drop into `insert-file' from insert buffer." (interactive) (setq ido-exit 'insert-file) (exit-minibuffer)) @@ -3742,7 +3742,7 @@ for first matching file." (funcall f completion-list :help-string "ido " :activate-callback - '(lambda (x y z) (message "doesn't work yet, sorry!")))) + '(lambda (x y z) (message "Doesn't work yet, sorry!")))) ;; else running Emacs ;;(add-hook 'completion-setup-hook 'completion-setup-function) (display-completion-list completion-list))))))) @@ -4053,7 +4053,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." ;;;###autoload (defun ido-dired () - "Call dired the ido way. + "Call `dired' the ido way. The directory is selected interactively by typing a substring. For details of keybindings, do `\\[describe-function] ido-find-file'." (interactive) @@ -4062,7 +4062,7 @@ For details of keybindings, do `\\[describe-function] ido-find-file'." (ido-file-internal 'dired 'dired nil "Dired: " 'dir))) (defun ido-list-directory () - "Call list-directory the ido way. + "Call `list-directory' the ido way. The directory is selected interactively by typing a substring. For details of keybindings, do `\\[describe-function] ido-find-file'." (interactive) |