From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Issue with internal directory links Date: Sun, 26 Jan 2020 19:36:34 +0100 Message-ID: <8736c2ukst.fsf@gnu.org> References: <87a773umrw.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:55855) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ivmm2-00025V-WC for emacs-orgmode@gnu.org; Sun, 26 Jan 2020 13:36:43 -0500 In-Reply-To: (Jonathan Fox's message of "Mon, 6 Jan 2020 22:44:52 -0500") 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: Jonathan Fox Cc: emacs-orgmode@gnu.org Hi Jonathan, Jonathan Fox writes: > Here's a link I'm using: > > [[./templates][Templates]] You can try adding (directory . emacs) to `org-file-apps' in your configuration like this: (setq org-file-apps '((auto-mode . emacs) (directory . emacs) ("\\.mm\\'" . default) ("\\.x?html?\\'" . default) ("\\.pdf\\'" . default))) A bug related to mailcap handling has been fixed in Emacs 27, perhaps this is what caused the change in your setup. I added (directory . emacs) in `org-file-apps' by default in the master branch. Thanks for reporting this, -- Bastien