From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id 0D/MFPRf0F9mRQAA0tVLHw (envelope-from ) for ; Wed, 09 Dec 2020 05:26:12 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id MPKaEPRf0F+bAQAAB5/wlQ (envelope-from ) for ; Wed, 09 Dec 2020 05:26:12 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 24D779403CB for ; Wed, 9 Dec 2020 05:26:12 +0000 (UTC) Received: from localhost ([::1]:41866 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kmrzN-0001fF-Qn for larch@yhetil.org; Wed, 09 Dec 2020 00:26:09 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:42166) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kmryx-0001eu-RT for emacs-orgmode@gnu.org; Wed, 09 Dec 2020 00:25:43 -0500 Received: from out0.migadu.com ([94.23.1.103]:2616) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kmryv-0008Jd-JJ for emacs-orgmode@gnu.org; Wed, 09 Dec 2020 00:25:43 -0500 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Kyle Meyer To: Adam Spiers Subject: Re: [PATCH] org-agenda.el: Add a M-, binding for org-priority-show In-Reply-To: <20201201195111.11217-1-orgmode@adamspiers.org> References: <20201201195111.11217-1-orgmode@adamspiers.org> Date: Wed, 09 Dec 2020 00:25:36 -0500 Message-ID: <87o8j3360f.fsf@kyleam.com> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=94.23.1.103; envelope-from=kyle@kyleam.com; helo=out0.migadu.com X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-orgmode@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: emacs-orgmode@gnu.org Errors-To: emacs-orgmode-bounces+larch=yhetil.org@gnu.org Sender: "Emacs-orgmode" X-TUID: 99ZwIlqQ757V [ Sorry, all, for the recent string of duplicate messages from me :x ] Adam Spiers writes: > This offers an easy way to check the internal numeric priority > used for sorting within the agenda. Thanks for the patch. Please include a changelog entry in your commit message. > --- > doc/org-manual.org | 8 ++++++++ > lisp/org-agenda.el | 1 + > 2 files changed, 9 insertions(+) > > diff --git a/doc/org-manual.org b/doc/org-manual.org > index 5a84a6de6..e914af42d 100644 > --- a/doc/org-manual.org > +++ b/doc/org-manual.org > @@ -9891,6 +9891,14 @@ the other commands, point needs to be in the desired line. > Set tags for the current headline. If there is an active region in > the agenda, change a tag for all headings in the region. > > +- {{{kbd(M-\,)}}} (~org-priority-show~) :: > + > + #+kindex: M-, > + #+findex: org-priority-show > + Show the numeric priority for the current item. This priority is > + composed of the main priority given with the =[#A]= cookies, and by > + additional input from the age of a schedules or deadline entry. > + > - {{{kbd(\,)}}} (~org-agenda-priority~) :: With a C-u, org-agenda-priority calls org-priority-show. So perhaps instead of adding a new binding, the documentation should be improved. What do you think?