From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Use "; " for org-toggle-comment speedy command and "#" for org-update-statistics-cookies Date: Wed, 29 Jan 2014 10:35:13 +0100 Message-ID: <87ppnbt9ke.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58503) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8RYS-0008Q8-1y for emacs-orgmode@gnu.org; Wed, 29 Jan 2014 04:35:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W8RYK-0004As-Fr for emacs-orgmode@gnu.org; Wed, 29 Jan 2014 04:35:31 -0500 Received: from plane.gmane.org ([80.91.229.3]:52482) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8RYK-0004Af-5h for emacs-orgmode@gnu.org; Wed, 29 Jan 2014 04:35:24 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1W8RYJ-0001oo-7O for emacs-orgmode@gnu.org; Wed, 29 Jan 2014 10:35:23 +0100 Received: from amontsouris-651-1-54-70.w90-24.abo.wanadoo.fr ([90.24.133.70]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 29 Jan 2014 10:35:23 +0100 Received: from bzg by amontsouris-651-1-54-70.w90-24.abo.wanadoo.fr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 29 Jan 2014 10:35:23 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain 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, --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=new-speed-commands.patch 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) --=-=-= Content-Type: text/plain -- Bastien --=-=-=--