From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle Meyer Subject: Re: `org-next-link' skips links inside PROPERTIES drawer Date: Mon, 20 Jan 2020 23:31:06 +0000 Message-ID: <87d0bd66yt.fsf@kyleam.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:33349) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1itgVn-0001M9-HV for emacs-orgmode@gnu.org; Mon, 20 Jan 2020 18:31:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1itgVl-0007jw-MC for emacs-orgmode@gnu.org; Mon, 20 Jan 2020 18:31:14 -0500 Received: from pb-smtp21.pobox.com ([173.228.157.53]:55373) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1itgVl-0007jH-73 for emacs-orgmode@gnu.org; Mon, 20 Jan 2020 18:31:13 -0500 In-Reply-To: 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-mx.org@gnu.org Sender: "Emacs-orgmode" To: =?utf-8?Q?Pedro_R=2EM=2E_J=C3=BAnior?= , Emacs Org Mode mailing list Hi Pedro, Pedro R.M. J=C3=BAnior writes: > I am testing Emacs 28 (Org 9.3) from the Git repository and I have > noticed that, compared to version 26.3 (Org 9.1.9), `org-next-link' > function is skipping links located inside the PROPERTIES drawer. > [...] > Let me know if this is an intentional behavior for newer versions of Org > mode. If so, I think it could receive a customization option for this > behavior. This behavior came up in a previous thread. Quoting Nicolas: ,----[ https://lists.gnu.org/archive/html/emacs-orgmode/2019-04/msg00075.ht= ml ] | This is expected. |=20 | The value in a properties drawer cannot be a link, even though | `org-open-at-point' would normally open it, as is done for comments. |=20 | In addition to no being syntactically a valid link, I think it is | undesirable for an interactive command to display hidden internal data. |=20 | If you want to reach it, just write a function calling |=20 | (re-search-forward org-any-link-re nil t) `----