branch: master commit 8c91662adcd29c93e3bb3ae7faf3ffe385080436 Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
ivy.el (ivy-call): Bind to "C-M-m" or "M-RET" "C-M-m" is close to "C-M-n" and "C-M-p", just as "M-RET" is close to "RET". Previously, the only binding was "C-o g". --- ivy.el | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/ivy.el b/ivy.el index b2d4680..59221e2 100644 --- a/ivy.el +++ b/ivy.el @@ -130,6 +130,7 @@ Only \"./\" and \"../\" apply here. They appear in reverse order." (define-key map (kbd "M-v") 'ivy-scroll-down-command) (define-key map (kbd "C-M-n") 'ivy-next-line-and-call) (define-key map (kbd "C-M-p") 'ivy-previous-line-and-call) + (define-key map (kbd "C-M-m") 'ivy-call) (define-key map (kbd "M-q") 'ivy-toggle-regexp-quote) (define-key map (kbd "M-j") 'ivy-yank-word) (define-key map (kbd "M-i") 'ivy-insert-current)