summaryrefslogtreecommitdiff
path: root/helm-org.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2016-09-14 17:13:07 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2016-09-14 17:13:07 +0200
commit8abd333235f8652a11f628f85ca029933ac5dd05 (patch)
tree916d9f67fc93528dabf5345e15c47a015523a67b /helm-org.el
parent7e86cf255a48815c291e3a57bcec88e7e9f11d73 (diff)
Fixup default binding in helm-org.
* helm-org.el (helm-org-headings-actions): Do it. (helm-org-headings-map): Do it.
Diffstat (limited to 'helm-org.el')
-rw-r--r--helm-org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-org.el b/helm-org.el
index 752c2b9f..6f501785 100644
--- a/helm-org.el
+++ b/helm-org.el
@@ -58,7 +58,7 @@ Note this have no effect in `helm-org-in-buffer-headings'."
(defcustom helm-org-headings-actions
'(("Go to heading" . helm-org-goto-marker)
("Open in indirect buffer `C-c i'" . helm-org--open-heading-in-indirect-buffer)
- ("Refile to this heading `C-c r`" . helm-org-heading-refile)
+ ("Refile to this heading `C-c w`" . helm-org-heading-refile)
("Insert link to this heading `C-c l`" . helm-org-insert-link-to-heading-at-marker))
"Default actions alist for
`helm-source-org-headings-for-files'."
@@ -111,7 +111,7 @@ Note this have no effect in `helm-org-in-buffer-headings'."
(let ((map (make-sparse-keymap)))
(set-keymap-parent map helm-map)
(define-key map (kbd "<C-c i>") 'helm-org-run-open-heading-in-indirect-buffer)
- (define-key map (kbd "C-c r") 'helm-org-run-heading-refile)
+ (define-key map (kbd "C-c w") 'helm-org-run-heading-refile)
(define-key map (kbd "C-c l") 'helm-org-run-insert-link-to-heading-at-marker)
map)
"Keymap for `helm-source-org-headings-for-files'.")