aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/ido.el12
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 401f5a2ccee..144e97ad8c4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12015-01-19 Dmitry Gutov <dgutov@yandex.ru>
2
3 * ido.el: Update Customization instructions.
4
12015-01-19 Jonas Bernoulli <jonas@bernoul.li> 52015-01-19 Jonas Bernoulli <jonas@bernoul.li>
2 6
3 Define Ido keymaps once (bug#17000). 7 Define Ido keymaps once (bug#17000).
diff --git a/lisp/ido.el b/lisp/ido.el
index 6a4f1978f24..1f4e3facd36 100644
--- a/lisp/ido.el
+++ b/lisp/ido.el
@@ -208,13 +208,13 @@
208;; 208;;
209;; Customize the Ido group to change the Ido functionality. 209;; Customize the Ido group to change the Ido functionality.
210;; 210;;
211;; To modify the keybindings, use the ido-setup-hook. For example: 211;; To modify the keybindings, use `define-key' on
212;;(add-hook 'ido-setup-hook 'ido-my-keys) 212;; `ido-common-completion-map' or one of the specialized keymaps:
213;; `ido-file-dir-completion-map', `ido-file-completion-map' or
214;; `ido-buffer-completion-map'.
213;; 215;;
214;;(defun ido-my-keys () 216;; (with-eval-after-load 'ido
215;; "Add my keybindings for ido." 217;; (define-key ido-common-completion-map " " 'ido-next-match))
216;; (define-key ido-completion-map " " 'ido-next-match)
217;; )
218 218
219;; Seeing all the matching buffers or files 219;; Seeing all the matching buffers or files
220;; ---------------------------------------- 220;; ----------------------------------------