summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2019-07-12 19:16:40 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2019-07-12 19:16:40 +0200
commita1d3864b5c208dd8b9052a46a587a9234a3945a6 (patch)
treeb668c2ba98d610115f47370c1079df0a114c2df3
parent60466004daf894fb390b07f9ff8d4d9283a395ef (diff)
Update documentation
-rw-r--r--helm.el21
1 files changed, 14 insertions, 7 deletions
diff --git a/helm.el b/helm.el
index 8235258f..24df498c 100644
--- a/helm.el
+++ b/helm.el
@@ -193,7 +193,6 @@ vectors, so don't use strings to define them."
(define-key map (kbd "C-g") 'helm-keyboard-quit)
(define-key map (kbd "<RET>") 'helm-maybe-exit-minibuffer)
(define-key map (kbd "C-i") 'helm-select-action)
- (define-key map (kbd "C-z") 'helm-execute-persistent-action)
(define-key map (kbd "C-j") 'helm-execute-persistent-action)
(define-key map (kbd "C-o") 'helm-next-source)
(define-key map (kbd "M-o") 'helm-previous-source)
@@ -1220,20 +1219,28 @@ See [[https://github.com/emacs-helm/helm/wiki/frame][helm wiki]] for more infos.
| C-n | Down | Next line |
| M-v | prior | Previous page |
| C-v | next | Next page |
-| Enter | | Execute first (default) action / Select |
+| Enter | | Execute first (default) action / Select [1] |
| M-< | | First line |
| M-> | | Last line |
| C-M-S-v | M-prior, C-M-y | Previous page (other-window) |
| C-M-v | M-next | Next page (other-window) |
| Tab | C-i | Show action list |
-| Left | M-o | Previous source |
-| Right | C-o | Next source |
-| C-k | | Delete pattern (with prefix arg delete from point to end or all [1]) |
-| C-j | C-z | Persistent action (Execute and keep Helm session) |
+| M-o | | Previous source |
+| C-o | | Next source |
+| C-k | | Delete pattern (with prefix arg delete from point to end or all [2]) |
+| C-j | | Persistent action (Execute and keep Helm session) |
-\[1] Delete from point to end or all depending on the value of
+\[1] Behavior may change depending context in some source e.g. `helm-find-files'.
+
+\[2] Delete from point to end or all depending on the value of
`helm-delete-minibuffer-contents-from-point'.
+** Action transformers
+
+You may be surprized to see you actions list changing depending of context, this
+happen when a source have an action transformer function which check the current
+candidate selectioned and add specific actions for this candidate.
+
** Shortcuts for n-th first actions
f1-f12: Execute n-th action where n is 1 to 12.