branch: externals/mct
commit fa7a76ae121e49adf986b8ec4daafd16fde722d9
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Make left and right not switch to completions
They should just move the cursor inside of the minibuffer.
---
mct.el | 2 ++
1 file changed, 2 insertions(+)
diff --git a/mct.el b/mct.el
index c5f826f615..b231dc8f60 100644
--- a/mct.el
+++ b/mct.el
@@ -1008,6 +1008,8 @@ This value means that it is overriden by the active
region.")
(define-key map (kbd "M-e") #'mct-edit-completion)
(define-key map (kbd "C-<return>") #'mct-complete-and-exit)
(define-key map (kbd "C-l") #'mct-list-completions-toggle)
+ (define-key map (kbd "<left>") nil)
+ (define-key map (kbd "<right>") nil)
map)
"Derivative of `minibuffer-local-completion-map'.")