summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Wahl <marcowahlsoft@gmail.com>2021-06-29 13:38:14 +0200
committerMarco Wahl <marcowahlsoft@gmail.com>2021-06-29 13:38:14 +0200
commit7666d6bb99d92fbc5170f65bf5fbbe593c6cd868 (patch)
treedcfda3641fb0e5c6c9362e64b2ceb66c616faee8
parent81c4befe6251ba9296c9fad771dfa1a5706f5f1a (diff)
downloadorg-mode-7666d6bb99d92fbc5170f65bf5fbbe593c6cd868.tar.gz
org-keys: improve the call for speed key "g"
* lisp/org-keys.el (org-speed-commands): Use the right argument to call the "goto variant" of org-refile with non-confusing user promt for speed key "g".
-rw-r--r--lisp/org-keys.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-keys.el b/lisp/org-keys.el
index 12d6226..b7ac337 100644
--- a/lisp/org-keys.el
+++ b/lisp/org-keys.el
@@ -726,7 +726,7 @@ hook. The default setting is `org-speed-command-activate'."
("B" . org-previous-block)
("u" . (org-speed-move-safe 'outline-up-heading))
("j" . org-goto)
- ("g" . (org-refile t))
+ ("g" . (org-refile '(4)))
("Outline Visibility")
("c" . org-cycle)
("C" . org-shifttab)