diff options
author | William Carroll <wpcarro@gmail.com> | 2022-11-25T05·59-0800 |
---|---|---|
committer | wpcarro <wpcarro@gmail.com> | 2022-11-25T06·27+0000 |
commit | ba41a4c889aed180ab76351b15274138e35aa5ef (patch) | |
tree | d6e2624ba72c4779fa83ea16617d96f2a1d07132 | |
parent | 5a0ed0f67ee91f321c5dcdd739f5069bd3634b46 (diff) |
feat(wpcarro/emacs): Support C-u, C-k KBDs in ivy r/5312
I'd like my vterm (insert), evil ex map (insert), ivy mode maps to share the common readline KBDs. Change-Id: I104c3328f28549cc436b02f08411f114277c851b Reviewed-on: https://cl.tvl.fyi/c/depot/+/7384 Reviewed-by: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
-rw-r--r-- | users/wpcarro/emacs/.emacs.d/wpc/keybindings.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el index ebd6f2fe5615..17e0e08eccd7 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/keybindings.el @@ -456,6 +456,8 @@ ;; restore the ability to paste in ivy (general-define-key :keymaps '(ivy-minibuffer-map) + "C-k" #'kill-line + "C-u" (lambda () (interactive) (kill-line 0)) "C-v" #'clipboard-yank "C-S-v" #'clipboard-yank) |