From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suvayu Ali Subject: Re: killing all contents of a headline Date: Tue, 19 Feb 2013 16:43:32 +0100 Message-ID: <20130219154332.GE5588@kuru.dyndns-at-home.com> References: <87mwv07bet.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="PEIAKu/WMn1b1Hv9" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:56521) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U7pM4-0005Fm-7r for emacs-orgmode@gnu.org; Tue, 19 Feb 2013 10:43:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U7pM1-00005U-LE for emacs-orgmode@gnu.org; Tue, 19 Feb 2013 10:43:40 -0500 Received: from mail-wg0-f51.google.com ([74.125.82.51]:64091) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U7pM1-00004r-Cz for emacs-orgmode@gnu.org; Tue, 19 Feb 2013 10:43:37 -0500 Received: by mail-wg0-f51.google.com with SMTP id 8so5503177wgl.6 for ; Tue, 19 Feb 2013 07:43:35 -0800 (PST) Content-Disposition: inline In-Reply-To: <87mwv07bet.fsf@bzg.ath.cx> 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 --PEIAKu/WMn1b1Hv9 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Tue, Feb 19, 2013 at 01:09:30PM +0100, Bastien wrote: > When using speedy commands (setq org-use-speed-commands t) > > . C-w > > at the beginning of a headline. > > I'm willing to update the "." speedy command and use "@" instead > to be consistent with the "C-c @" command. Yes that would be good. To save you some work, I attached a patch. -- Suvayu Open source is the future. It sets us free. --PEIAKu/WMn1b1Hv9 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0001-Change-default-org-mark-subtree-speed-command.patch" >From 664f375b7c2f65269e730fdb870cf81cd01f2bf2 Mon Sep 17 00:00:00 2001 From: Suvayu Ali Date: Tue, 19 Feb 2013 16:40:14 +0100 Subject: [PATCH] Change default org-mark-subtree speed command * org.el (org-speed-commands-default): Change default binding for org-mark-subtree from "." to "@" to be more consistent with "C-c @". TINYCHANGE --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 91763d3..85a6a4a 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -18658,7 +18658,7 @@ BEG and END default to the buffer boundaries." ("^" . org-sort) ("w" . org-refile) ("a" . org-archive-subtree-default-with-confirmation) - ("." . org-mark-subtree) ;; FIXME Better use @ (see C-c @) here? + ("@" . org-mark-subtree) ("#" . org-toggle-comment) ("Clock Commands") ("I" . org-clock-in) -- 1.8.1.2 --PEIAKu/WMn1b1Hv9--