From mboxrd@z Thu Jan 1 00:00:00 1970 From: gregory@dynapse.com (Gregory J. Grubbs) Subject: [PATCH] Suggestion to change speed key Date: Sat, 14 Nov 2009 11:49:29 -0700 Message-ID: <87tywx7xhi.fsf@dynapse.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N9NhB-0007BN-0x for emacs-orgmode@gnu.org; Sat, 14 Nov 2009 13:50:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N9Nh6-00077L-Gw for emacs-orgmode@gnu.org; Sat, 14 Nov 2009 13:50:00 -0500 Received: from [199.232.76.173] (port=37537 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N9Nh6-000778-8a for emacs-orgmode@gnu.org; Sat, 14 Nov 2009 13:49:56 -0500 Received: from lo.gmane.org ([80.91.229.12]:56015) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N9Nh5-00028H-N4 for emacs-orgmode@gnu.org; Sat, 14 Nov 2009 13:49:56 -0500 Received: from list by lo.gmane.org with local (Exim 4.50) id 1N9Nh2-0002Qi-Bf for emacs-orgmode@gnu.org; Sat, 14 Nov 2009 19:49:52 +0100 Received: from 72.42.83.192 ([72.42.83.192]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 Nov 2009 19:49:52 +0100 Received: from gregory by 72.42.83.192 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 Nov 2009 19:49:52 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org The current speed keys include the following: --8<---------------cut here---------------start------------->8--- c org-cycle C org-shifttab --8<---------------cut here---------------end--------------->8--- But those keys already have equivalents with the same number of key strokes: c can also be done as TAB S-c is S-TAB I find it quite useful to jump into and out of column view as I'm zipping up and down the hierarchy of an org-mode file. I therefore suggest removing C as a speed key, and using c to invoke org-columns, like so: --8<---------------cut here---------------start------------->8--- diff --git a/lisp/org.el b/lisp/org.el index 0c22428..3ae67f1 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -14905,8 +14905,7 @@ Some of the options can be changed using the variable ("j" . org-goto) ("g" . (org-refile t)) ("Outline Visibility") - ("c" . org-cycle) - ("C" . org-shifttab) + ("c" . org-columns) (" " . org-display-outline-path) ("Outline Structure Editing") ("U" . org-shiftmetaup) --8<---------------cut here---------------end--------------->8---