1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-22 18:35:09 +00:00

* lisp/ido.el: Update Customization instructions

This commit is contained in:
Dmitry Gutov 2015-01-19 13:55:51 +02:00
parent db2ed6b798
commit 5df0b2cb27
2 changed files with 10 additions and 6 deletions

View 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> 2015-01-19 Jonas Bernoulli <jonas@bernoul.li>
Define Ido keymaps once (bug#17000). Define Ido keymaps once (bug#17000).

View File

@ -208,13 +208,13 @@
;; ;;
;; Customize the Ido group to change the Ido functionality. ;; Customize the Ido group to change the Ido functionality.
;; ;;
;; To modify the keybindings, use the ido-setup-hook. For example: ;; To modify the keybindings, use `define-key' on
;;(add-hook 'ido-setup-hook 'ido-my-keys) ;; `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 () ;; (with-eval-after-load 'ido
;; "Add my keybindings for ido." ;; (define-key ido-common-completion-map " " 'ido-next-match))
;; (define-key ido-completion-map " " 'ido-next-match)
;; )
;; Seeing all the matching buffers or files ;; Seeing all the matching buffers or files
;; ---------------------------------------- ;; ----------------------------------------