mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Add extra bindings to fido-mode.
* lisp/icomplete.el (icomplete-fido-mode-map) : Add arrows and other bindings to reproduce ido behaviour.
This commit is contained in:
parent
2f36a08214
commit
e3043a73fb
1 changed files with 5 additions and 0 deletions
|
|
@ -305,10 +305,15 @@ require user confirmation."
|
|||
(define-key map (kbd "C-k") 'icomplete-fido-kill)
|
||||
(define-key map (kbd "C-d") 'icomplete-fido-delete-char)
|
||||
(define-key map (kbd "RET") 'icomplete-fido-ret)
|
||||
(define-key map (kbd "C-m") 'icomplete-fido-ret)
|
||||
(define-key map (kbd "DEL") 'icomplete-fido-backward-updir)
|
||||
(define-key map (kbd "M-j") 'exit-minibuffer)
|
||||
(define-key map (kbd "C-s") 'icomplete-forward-completions)
|
||||
(define-key map (kbd "C-r") 'icomplete-backward-completions)
|
||||
(define-key map (kbd "<right>") 'icomplete-forward-completions)
|
||||
(define-key map (kbd "<left>") 'icomplete-backward-completions)
|
||||
(define-key map (kbd "C-.") 'icomplete-forward-completions)
|
||||
(define-key map (kbd "C-,") 'icomplete-backward-completions)
|
||||
map)
|
||||
"Keymap used by `fido-mode' in the minibuffer.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue