From fd50f388a4c01ded4252262a9a222d5a0b7a2e4a Mon Sep 17 00:00:00 2001 From: "Itai Y. Efrat" Date: Sat, 9 Apr 2022 15:23:16 +0300 Subject: [PATCH] refactor!(vertico): fix embark-collect and rebind to C-c C-l BREAKING CHANGE: `embark-collect-snapshot` has been renamed upstream to `embark-collect`. Since the `C-s` mnemonic doesn't really make sense anymore, I've moved the binding to `C-c C-l`, which has the nice bonus of being next to the similar `C-c C-;`, and being nicer. --- modules/completion/vertico/README.org | 2 +- modules/completion/vertico/config.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/completion/vertico/README.org b/modules/completion/vertico/README.org index f472b982d..5b2ddebca 100644 --- a/modules/completion/vertico/README.org +++ b/modules/completion/vertico/README.org @@ -87,7 +87,7 @@ keybindings are available: | =C-M-j= | (evil) Go to next group | | =C-;= or = a= | Open an ~embark-act~ menu to chose a useful action | | =C-c C-;= | ~embark-export~ the current candidate list (export to a type-specific buffer) | -| =C-c C-s= | ~embark-collect-snapsnot~ the current candidate list (collect verbatim) | +| =C-c C-l= | ~embark-collect~ the current candidate list (collect verbatim) | | =C-SPC= | Preview the current candidate | ~embark-act~ will prompt you with a =which-key= menu with useful commands on the diff --git a/modules/completion/vertico/config.el b/modules/completion/vertico/config.el index 4a4220137..ee1c882e6 100644 --- a/modules/completion/vertico/config.el +++ b/modules/completion/vertico/config.el @@ -173,7 +173,7 @@ orderless." (:map minibuffer-local-map "C-;" #'embark-act "C-c C-;" #'embark-export - "C-c C-s" #'embark-collect-snapshot + "C-c C-l" #'embark-collect :desc "Export to writable buffer" "C-c C-e" #'+vertico/embark-export-write) (:leader :desc "Actions" "a" #'embark-act)) ; to be moved to :config default if accepted