diff options
author | jao <jao@gnu.org> | 2024-03-27 01:01:23 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2024-03-27 01:01:23 +0000 |
commit | 7dbdc86499fa858239b85883ad2cf09dbcb903e5 (patch) | |
tree | df75b3cf5a0526b5f749da6bb8e0658473169fe3 | |
parent | 608e9417c9393c0b69631597784cc02553adb80e (diff) | |
download | elibs-7dbdc86499fa858239b85883ad2cf09dbcb903e5.tar.gz elibs-7dbdc86499fa858239b85883ad2cf09dbcb903e5.tar.bz2 |
embark tweaks, for reference
-rw-r--r-- | custom/jao-custom-completion.el | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/custom/jao-custom-completion.el b/custom/jao-custom-completion.el index 235161c..a5989db 100644 --- a/custom/jao-custom-completion.el +++ b/custom/jao-custom-completion.el @@ -202,9 +202,13 @@ :demand t :init (setq embark-quit-after-action nil - embark-indicator #'embark-mixed-indicator - embark-verbose-indicator-buffer-sections '(bindings) + embark-indicators '(embark-mixed-indicator + ;; embark-minimal-indicator + embark-highlight-indicator + embark-isearch-highlight-indicator) embark-mixed-indicator-both t + embark-mixed-indicator-delay 1 + embark-verbose-indicator-buffer-sections '(bindings) embark-verbose-indicator-excluded-commands '(embark-become embark-export embark-collect) embark-verbose-indicator-nested t @@ -213,6 +217,9 @@ (window-parameters (mode-line-format . none)) (window-height . fit-window-to-buffer))) + (setq prefix-help-command #'embark-prefix-help-command) + (add-to-list 'vertico-multiform-categories '(embark-keybinding grid)) + :bind (("C-;" . embark-act) ("C-c ;" . embark-act) ("C-'" . embark-dwim) |