Skip to content

Commit

Permalink
tweak(embark): better keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Nov 12, 2023
1 parent dce96a0 commit da58755
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions core/me-completion.el
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,15 @@ This depends on `+cape-hosts' and `+cape-global-capes'."
(use-package embark
:straight t
:bind (("<remap> <describe-bindings>" . embark-bindings)
("C-²" . embark-act)) ; In a French AZERTY keyboard, the ² key is right above TAB
("C-²" . embark-act) ; In a French AZERTY keyboard, the ² key is right above TAB
("M-²" . embark-collect)
("C-&" . embark-dwim))
:init
;; Use Embark to show bindings in a key prefix with `C-h`
(setq prefix-help-command #'embark-prefix-help-command)
(+map! "a" #'embark-act))
(+map!
"a" #'embark-act
"A" #'embark-collect))

(use-package embark-consult
:straight t
Expand Down

0 comments on commit da58755

Please sign in to comment.