mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 18:37:33 +00:00
Bind <up> and <down> in icomplete-vertical-mode
Suggested by Ergus <spacibba@aol.com> * lisp/icomplete.el (icomplete-vertical-mode-minibuffer-map): Bind <up> and <down>
This commit is contained in:
parent
96bbd6f0a7
commit
e6fb7e44cc
1 changed files with 2 additions and 0 deletions
|
|
@ -624,6 +624,8 @@ Usually run by inclusion in `minibuffer-setup-hook'."
|
|||
(let ((map (make-sparse-keymap)))
|
||||
(define-key map (kbd "C-n") 'icomplete-forward-completions)
|
||||
(define-key map (kbd "C-p") 'icomplete-backward-completions)
|
||||
(define-key map (kbd "<down>") 'icomplete-forward-completions)
|
||||
(define-key map (kbd "<up>") 'icomplete-backward-completions)
|
||||
(define-key map (kbd "M-<") 'icomplete-vertical-goto-first)
|
||||
(define-key map (kbd "M->") 'icomplete-vertical-goto-last)
|
||||
map)
|
||||
|
|
|
|||
Loading…
Reference in a new issue