]> code.delx.au - gnu-emacs/commitdiff
* lisp/ido.el: Update Customization instructions
authorDmitry Gutov <dgutov@yandex.ru>
Mon, 19 Jan 2015 11:55:51 +0000 (13:55 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Mon, 19 Jan 2015 11:55:51 +0000 (13:55 +0200)
lisp/ChangeLog
lisp/ido.el

index 401f5a2ccee03c3c9747ee658d7009359d0977f8..144e97ad8c44a7880825c67fab33718636d5bb9b 100644 (file)
@@ -1,3 +1,7 @@
+2015-01-19  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * ido.el: Update Customization instructions.
+
 2015-01-19  Jonas Bernoulli  <jonas@bernoul.li>
 
        Define Ido keymaps once (bug#17000).
index 6a4f1978f248d342431314a4c281664c8ae5ba16..1f4e3facd3645faec4821fda7212090fc5765f63 100644 (file)
 ;;
 ;; 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
 ;; ----------------------------------------