summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-01-01 23:43:34 +0100
committerBastien Guerry <bzg@altern.org>2013-01-01 23:43:34 +0100
commita9ece57df80ecf3172a1145284b899dbce56bded (patch)
tree00207153c6646e28c61256ddf1ba30cf0a70f43c
parentfc2aae5d810c1dd570694661c2a73794c8d454d5 (diff)
downloadorg-mode-a9ece57df80ecf3172a1145284b899dbce56bded.tar.gz
org.el (org-speed-commands-default): Use ":" instead of ";" for `org-set-tags-command'
* org.el (org-speed-commands-default): Use ":" instead of ";" for `org-set-tags-command', which is consistent with ":" in agenda view. Use "=" for `org-columns". Thanks to Alan Schmitt for pointing this.
-rw-r--r--lisp/org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org.el b/lisp/org.el
index c52f3c4..0bc252f 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -18068,7 +18068,7 @@ BEG and END default to the buffer boundaries."
("c" . org-cycle)
("C" . org-shifttab)
(" " . org-display-outline-path)
- (":" . org-columns)
+ ("=" . org-columns)
("Outline Structure Editing")
("U" . org-shiftmetaup)
("D" . org-shiftmetadown)
@@ -18093,7 +18093,7 @@ BEG and END default to the buffer boundaries."
("1" . (org-priority ?A))
("2" . (org-priority ?B))
("3" . (org-priority ?C))
- (";" . org-set-tags-command)
+ (":" . org-set-tags-command)
("e" . org-set-effort)
("E" . org-inc-effort)
("W" . (lambda(m) (interactive "sMinutes before warning: ")