diff options
| author | Dmitry Gutov | 2015-01-19 13:55:51 +0200 |
|---|---|---|
| committer | Dmitry Gutov | 2015-01-19 13:55:51 +0200 |
| commit | 5df0b2cb27564c4a167ce007aaa338a591c313ef (patch) | |
| tree | 4cb39f48942424b15e33164ae42cdf00044a20a5 | |
| parent | db2ed6b798960f4067bbf2c7415f34b95b982818 (diff) | |
| download | emacs-5df0b2cb27564c4a167ce007aaa338a591c313ef.tar.gz emacs-5df0b2cb27564c4a167ce007aaa338a591c313ef.zip | |
* lisp/ido.el: Update Customization instructions
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | 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 @@ | |||
| 1 | 2015-01-19 Dmitry Gutov <dgutov@yandex.ru> | ||
| 2 | |||
| 3 | * ido.el: Update Customization instructions. | ||
| 4 | |||
| 1 | 2015-01-19 Jonas Bernoulli <jonas@bernoul.li> | 5 | 2015-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 | ;; ---------------------------------------- |