From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dirk-Jan C. Binnema Subject: [PATCH] add some documentation for 'capture' to org-agenda Date: Sat, 10 Jul 2010 16:00:36 +0300 Message-ID: <20100710130036.6612839C00A@djcbsoftware.nl> Reply-To: djcb@djcbsoftware.nl Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/mixed; boundary="Multipart_Sat_Jul_10_16:00:36_2010-1" Return-path: Received: from [140.186.70.92] (port=42117 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OXZfg-0002Iv-O8 for emacs-orgmode@gnu.org; Sat, 10 Jul 2010 09:00:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OXZff-0002EN-CW for emacs-orgmode@gnu.org; Sat, 10 Jul 2010 09:00:44 -0400 Received: from vs13.mail.saunalahti.fi ([195.197.172.103]:37307) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OXZff-0002DF-1m for emacs-orgmode@gnu.org; Sat, 10 Jul 2010 09:00:43 -0400 Received: from saunalahti-vams (localhost [127.0.0.1]) by vs13.mail.saunalahti.fi (Postfix) with SMTP id A78467303C for ; Sat, 10 Jul 2010 16:00:38 +0300 (EEST) Received: from gw03.mail.saunalahti.fi (gw03.mail.saunalahti.fi [195.197.172.111]) by vs13.mail.saunalahti.fi (Postfix) with ESMTP id 8F8FF7303C for ; Sat, 10 Jul 2010 16:00:38 +0300 (EEST) Received: from djcbsoftware.nl (a88-114-89-181.elisa-laajakaista.fi [88.114.89.181]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by gw03.mail.saunalahti.fi (Postfix) with ESMTP id 80CF52164FB for ; Sat, 10 Jul 2010 16:00:37 +0300 (EEST) Received: from cthulhu.mindcrime.djcbsoftware.nl (localhost [127.0.0.1]) by djcbsoftware.nl (Postfix) with ESMTP id 6612839C00A for ; Sat, 10 Jul 2010 16:00:36 +0300 (EEST) 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 --Multipart_Sat_Jul_10_16:00:36_2010-1 Content-Type: text/plain; charset=US-ASCII Hi, A trivial patch to add some documentation for 'capture' to org-agenda (against HEAD). Best wishes, Dirk. -- Dirk-Jan C. Binnema Helsinki, Finland e:djcb@djcbsoftware.nl w:www.djcbsoftware.nl pgp: D09C E664 897D 7D39 5047 A178 E96A C7A1 017D DA3C --Multipart_Sat_Jul_10_16:00:36_2010-1 Content-Type: text/plain; type=patch; charset=US-ASCII Content-Disposition: attachment; filename="0001-mention-org-capture-in-the-documentation-for-org-age.patch" Content-Transfer-Encoding: 7bit diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 1fe4639..191ee52 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -6965,13 +6965,14 @@ m Mark the entry at point for an agenda action s Schedule the marked entry to the date at the cursor d Set the deadline of the marked entry to the date at the cursor r Call `org-remember' with cursor date as the default date +c Call `org-capture' with cursor date as the default date SPC Show marked entry in other window TAB Visit marked entry in other window The cursor may be at a date in the calendar, or in the Org agenda." (interactive) (let (ans) - (message "Select action: [m]ark | [s]chedule [d]eadline [r]emember [ ]show") + (message "Select action: [m]ark | [s]chedule [d]eadline [r]emember [c]apture [ ]show") (setq ans (read-char-exclusive)) (cond ((equal ans ?m) --Multipart_Sat_Jul_10_16:00:36_2010-1 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --Multipart_Sat_Jul_10_16:00:36_2010-1--