Add new bindings

My right Alt sends Backspace when tapped, thanks to kmonad. Backspace
is unbound in boon-command-map, making it ideal to use for quick
buffer switching instead of the existing `m m` Hydra.
This commit is contained in:
contrapunctus 2022-06-10 18:52:14 +05:30
parent e2b77f733c
commit 9a6a5af1ce
1 changed files with 6 additions and 2 deletions

View File

@ -1825,7 +1825,8 @@ Suggestion by lampilelo for extending =iso-transl-ctl-x-8-map= (https://dpaste.c
;; these I prefer in their Dvorak positions rather than their QWERTY positions
("/" . undo-tree-undo)
("?" . undo-tree-redo)
("z" . boon-repeat-command))
("z" . boon-repeat-command)
("DEL" . #'my-buffer-switch))
(:map boon-x-map
("," . 'write-file)
("o" . 'save-buffer)
@ -2653,6 +2654,7 @@ An example of querying the Chronometrist file data - finding out how much time I
("v" . nil))
(:map eww-mode-map
("h" . #'eww-back-url)
([mouse-3] . eww-back-url)
("s" . #'eww-forward-url)
("c" . #'shr-previous-link)
("r" . #'shr-next-link)
@ -3543,7 +3545,9 @@ But with =initials=, the desired completion is often buried in the results. That
("C-w" . #'vertico-directory-delete-word)
("<C-backspace>" . #'vertico-directory-delete-word)
("<prior>" . #'vertico-scroll-down)
("<next>" . #'vertico-scroll-up))
("<next>" . #'vertico-scroll-up)
("C-RET" . #'vertico-exit-input)
("<C-return>" . #'vertico-exit-input))
:config
(setq completion-category-defaults nil
completion-category-overrides nil