diff --git a/doc/DOCUMENTATION.md b/doc/DOCUMENTATION.md index 63da08748..d5cca0d19 100644 --- a/doc/DOCUMENTATION.md +++ b/doc/DOCUMENTATION.md @@ -972,12 +972,14 @@ will turn-off the micro-state). Key Binding | Description --------------------|------------------------------------------------------------ TAB | initiate the micro-state +a | switch to actions page g | go to first candidate G | go to last candidate h | go to previous page j | select next candidate k | select previous candidate l | go to next page +r | switch to actions page and leave the micro-state (useful combined with TAB) t | mark current candidate T | mark all candidates v | execute persistent action diff --git a/spacemacs/packages.el b/spacemacs/packages.el index 801932ad7..38cbacb54 100644 --- a/spacemacs/packages.el +++ b/spacemacs/packages.el @@ -1220,6 +1220,7 @@ which require an initialization must be listed explicitly in the list.") (set-temporary-overlay-map (let ((map (make-sparse-keymap))) (define-key map "?" 'helm-help) + (define-key map "a" 'helm-select-action) (define-key map "g" 'helm-beginning-of-buffer) (define-key map "G" 'helm-end-of-buffer) (define-key map "h" 'helm-previous-page)