From: Jack Kamm <jackkamm@gmail.com> To: emacs-orgmode@gnu.org Subject: [PATCH] New "project" option for org-link-file-path-type Date: Wed, 28 Oct 2020 17:46:03 -0700 Message-ID: <87v9etq2pg.fsf@gmail.com> (raw) [-- Attachment #1: Type: text/plain, Size: 412 bytes --] The attached patch adds a "project" option for org-link-file-path-type. When this is set, links to files under the current project root will be relative, while links elsewhere are absolute. It relies on project.el, which appears to have been added in emacs 25. I used fboundp to check whether the functionality is available, and to silence compiler warnings. I'm not sure if this is the correct way to do it. [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: 0001-ol.el-New-option-project-for-org-link-file-path-type.patch --] [-- Type: text/x-patch, Size: 2735 bytes --] From c5f9d4043a6cf6a325d122be24214356f36446f1 Mon Sep 17 00:00:00 2001 From: Jack Kamm <jackkamm@gmail.com> Date: Wed, 28 Oct 2020 17:29:04 -0700 Subject: [PATCH] ol.el: New option "project" for org-link-file-path-type * lisp/ol.el (org-link-file-path-type): Add new option. (org-insert-link): Handle project option for org-link-file-path-type. --- etc/ORG-NEWS | 8 ++++++++ lisp/ol.el | 17 +++++++++++++++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS index 7f935bf52..b9adc9089 100644 --- a/etc/ORG-NEWS +++ b/etc/ORG-NEWS @@ -88,6 +88,14 @@ package, to convert pandas Dataframes into orgmode tables: | 2 | 3 | 6 | #+end_src +*** New option to use relative paths for links in same project + +If =org-link-file-path-type= is =project=, inserted links under the +current project root will use relative paths. + +If not in a project, or if =project.el= is not available (as in older +versions of Emacs), links behave as default (=adaptive=). + * Version 9.4 ** Incompatible changes *** Possibly broken internal file links: please check and fix diff --git a/lisp/ol.el b/lisp/ol.el index 951bb74e7..9c48bd9b5 100644 --- a/lisp/ol.el +++ b/lisp/ol.el @@ -212,13 +212,17 @@ (defcustom org-link-file-path-type 'adaptive absolute Absolute path, if possible with ~ for home directory. noabbrev Absolute path, no abbreviation of home directory. adaptive Use relative path for files in the current directory and sub- - directories of it. For other files, use an absolute path." + directories of it. For other files, use an absolute path. +project Use relative path for files in the current project and sub- + directories of it. For other files, usue an absolute path. + If project.el is not available, behave as adaptive." :group 'org-link :type '(choice (const relative) (const absolute) (const noabbrev) - (const adaptive)) + (const adaptive) + (const project)) :safe #'symbolp) (defcustom org-link-abbrev-alist nil @@ -1876,6 +1880,15 @@ (defun org-insert-link (&optional complete-file link-location description) (setq path (expand-file-name path))) ((eq org-link-file-path-type 'relative) (setq path (file-relative-name path))) + ((and (fboundp 'project-current) + (fboundp 'project-root) + (project-current) + (eq org-link-file-path-type 'project)) + (if (string-prefix-p (expand-file-name (project-root + (project-current))) + (expand-file-name path)) + (setq path (file-relative-name path)) + (setq path (abbreviate-file-name (expand-file-name path))))) (t (save-match-data (if (string-match (concat "^" (regexp-quote -- 2.29.1
next reply other threads:[~2020-10-29 0:47 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-10-29 0:46 Jack Kamm [this message] 2020-11-02 5:41 ` Kyle Meyer 2020-11-04 18:11 ` Jack Kamm 2020-11-06 3:33 ` Kyle Meyer 2020-11-12 1:05 ` Jack Kamm
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: https://orgmode.org * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=87v9etq2pg.fsf@gmail.com \ --to=jackkamm@gmail.com \ --cc=emacs-orgmode@gnu.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Org-mode mailing list This inbox may be cloned and mirrored by anyone: git clone --mirror https://orgmode.org/list/0 list/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 list list/ https://orgmode.org/list \ emacs-orgmode@gnu.org public-inbox-index list Example config snippet for mirrors. Newsgroups are available over NNTP: nntp://news.yhetil.org/yhetil.emacs.orgmode nntp://news.gmane.io/gmane.emacs.orgmode AGPL code for this site: git clone https://public-inbox.org/public-inbox.git