diff --git a/modules/completion/vertico/README.org b/modules/completion/vertico/README.org index 31fa9f611..f472b982d 100644 --- a/modules/completion/vertico/README.org +++ b/modules/completion/vertico/README.org @@ -79,15 +79,16 @@ Doom-specific additions: When in an active Vertico completion session, the following doom added keybindings are available: -| Keybind | Description | -|-----------------------+----------------------------------------------------| -| =C-k= | (evil) Go to previous candidate | -| =C-j= | (evil) Go to next candidate | -| =C-M-k= | (evil) Go to previous group | -| =C-M-j= | (evil) Go to next group | -| =C-;= or = a= | Open an ~embark-act~ menu to chose a useful action | -| =C-c C-;= | export the current candidate list to a buffer | -| =C-SPC= | Preview the current candidate | +| Keybind | Description | +|-----------------------+-------------------------------------------------------------------------------| +| =C-k= | (evil) Go to previous candidate | +| =C-j= | (evil) Go to next candidate | +| =C-M-k= | (evil) Go to previous group | +| =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-SPC= | Preview the current candidate | ~embark-act~ will prompt you with a =which-key= menu with useful commands on the selected candidate or candidate list, depending on the completion category. Note diff --git a/modules/completion/vertico/config.el b/modules/completion/vertico/config.el index 378c3a43e..a3a0b0708 100644 --- a/modules/completion/vertico/config.el +++ b/modules/completion/vertico/config.el @@ -172,6 +172,7 @@ orderless." (:map minibuffer-local-map "C-;" #'embark-act "C-c C-;" #'embark-export + "C-c C-s" #'embark-collect-snapshot :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