diff options
author | Jambunathan K <kjambunathan@gmail.com> | 2013-02-16 00:49:29 +0530 |
---|---|---|
committer | Jambunathan K <kjambunathan@gmail.com> | 2013-02-16 00:49:29 +0530 |
commit | d7e76a89295826932706081531dde1ab43110329 (patch) | |
tree | d390885459973abaead959ea1de1d1c82b37dbbc /lisp/icomplete.el | |
parent | d64d97e537301a9787a569982d67eed8ecdabe8b (diff) | |
download | emacs-d7e76a89295826932706081531dde1ab43110329.tar.gz |
Fix bug#13708
* lisp/icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
Bind `C-.' and `C-,' to `icomplete-forward-completions' and
`icomplete-backward-completions'.
* lisp/ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
`ido-next-match' and `ido-prev-match' resply.
* lisp/iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
`iswitchb-next-match' and `iswitchb-prev-match' resply.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r-- | lisp/icomplete.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el index 1f9b4a3afe6..73049df097d 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -168,8 +168,8 @@ except those on this list.") (let ((map (make-sparse-keymap))) (define-key map [?\M-\t] 'minibuffer-force-complete) (define-key map [?\C-j] 'minibuffer-force-complete-and-exit) - (define-key map [?\C-s] 'icomplete-forward-completions) - (define-key map [?\C-r] 'icomplete-backward-completions) + (define-key map [?\C-.] 'icomplete-forward-completions) + (define-key map [?\C-,] 'icomplete-backward-completions) map)) (defun icomplete-forward-completions () |