From 5df0b2cb27564c4a167ce007aaa338a591c313ef Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Mon, 19 Jan 2015 13:55:51 +0200 Subject: [PATCH] * lisp/ido.el: Update Customization instructions --- lisp/ChangeLog | 4 ++++ lisp/ido.el | 12 ++++++------ 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 @@ +2015-01-19 Dmitry Gutov + + * ido.el: Update Customization instructions. + 2015-01-19 Jonas Bernoulli 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 @@ ;; ;; Customize the Ido group to change the Ido functionality. ;; -;; To modify the keybindings, use the ido-setup-hook. For example: -;;(add-hook 'ido-setup-hook 'ido-my-keys) +;; To modify the keybindings, use `define-key' on +;; `ido-common-completion-map' or one of the specialized keymaps: +;; `ido-file-dir-completion-map', `ido-file-completion-map' or +;; `ido-buffer-completion-map'. ;; -;;(defun ido-my-keys () -;; "Add my keybindings for ido." -;; (define-key ido-completion-map " " 'ido-next-match) -;; ) +;; (with-eval-after-load 'ido +;; (define-key ido-common-completion-map " " 'ido-next-match)) ;; Seeing all the matching buffers or files ;; ---------------------------------------- -- 2.11.4.GIT