Hi all,
I suggest to use ";" for the speedy command org-toggle-comment and
"#" for org-update-statistics-cookies. See the attached patch.
Let me know if
1) you feel using ; for toggling COMMENT is better than #
1) you feel the new # speedy command would be useful
Thanks,
diff --git a/lisp/org.el b/lisp/org.el
index 7a4f347..f04858c 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -19354,7 +19354,8 @@ boundaries."
("w" . org-refile)
("a" . org-archive-subtree-default-with-confirmation)
("@" . org-mark-subtree)
- ("#" . org-toggle-comment)
+ (";" . org-toggle-comment)
+ ("#" . org-update-statistics-cookies)
("Clock Commands")
("I" . org-clock-in)
("O" . org-clock-out)
--
Bastien