From e303be6951129c3dc10925a04dfbb18cdf0aa4e1 Mon Sep 17 00:00:00 2001 From: Manjinder Singh <49171515+jinder1s@users.noreply.github.com> Date: Mon, 8 Nov 2021 16:40:44 -0500 Subject: [PATCH] fix(org): show outline path on refile to current file Before this change, the +org/refile-to-current-file command would display a flat list of tail headings in the current file, without context, which can result in duplicates and can make it difficult to tell where you're refiling a heading to. This changes each heading to be a full path. --- modules/lang/org/autoload/org-refile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/org/autoload/org-refile.el b/modules/lang/org/autoload/org-refile.el index 681b4b57a..28bd28bb4 100644 --- a/modules/lang/org/autoload/org-refile.el +++ b/modules/lang/org/autoload/org-refile.el @@ -8,7 +8,7 @@ If prefix ARG, copy instead of move." (interactive "P") (let ((org-refile-targets `((,file :maxlevel . 10))) - (org-refile-use-outline-path nil) + (org-refile-use-outline-path t) (org-refile-keep arg) current-prefix-arg) (call-interactively #'org-refile)))