From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: links-9.0 v3 Date: Fri, 08 Jul 2016 23:48:41 +0200 Message-ID: <87y45bvm12.fsf@saiph.selenimh> References: <87oa6afmeu.fsf@saiph.selenimh> <87k2gxg8qm.fsf@saiph.selenimh> <8737nlfqdv.fsf@saiph.selenimh> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41912) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLddl-00056e-J9 for emacs-orgmode@gnu.org; Fri, 08 Jul 2016 17:48:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bLddh-00074E-FX for emacs-orgmode@gnu.org; Fri, 08 Jul 2016 17:48:52 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:49228) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLddh-000747-8W for emacs-orgmode@gnu.org; Fri, 08 Jul 2016 17:48:49 -0400 In-Reply-To: (John Kitchin's message of "Thu, 07 Jul 2016 15:21:31 -0400") 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" To: John Kitchin Cc: "emacs-orgmode@gnu.org" John Kitchin writes: > Here are the new revisions that implement the previous solution you > suggested and that incorporate the commit merges as far as I can see. Thank you. > +(defcustom org-link-parameters > + '(("file" :complete 'org-file-complete-link) #'org-file-complete-link > + ("file+emacs" :follow (lambda (path) (org-open-file path '(4)))) > + ("file+sys" :follow (lambda (path) (org-open-file path 'system))) This will ignore so-called "option" part, e.g. [[file:test.org::3]] :follow functions need to extract it somehow. Once this issue is resolved, I think the whole change-set can be pushed to master, AFAIC.