summaryrefslogtreecommitdiff
path: root/emacs-init.org
diff options
context:
space:
mode:
authorfpi2020-02-12 08:59:24 +0100
committerfpi2020-02-23 18:07:13 +0100
commit5904fb5b09e86aeae65bd265781eef711ad63204 (patch)
tree26ff7ea627046222a322d78d7a9ea26672c2bc04 /emacs-init.org
parentUpdate my agenda view (diff)
Better distinguish refile targets with the same name
Diffstat (limited to '')
-rw-r--r--emacs-init.org7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs-init.org b/emacs-init.org
index f0737aa..67746e2 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -1516,6 +1516,11 @@ Hansen's]] configs.
- Babel languages :: Enable more languages to use in org-babel blocks.
- Youtube links :: See [[http://endlessparentheses.com/embedding-youtube-videos-with-org-mode-links.html][this blog post]] for more info.
- Ellipsis :: I currently use =" "= and previously used ="⚡⚡⚡"=.
+- Refile Targets :: Use the full outline path so I can distinguish
+ headlines with the same name & disable step-wise completion as I
+ think from the refile target backwards, not from top-level
+ downwards.
+
#+begin_src emacs-lisp
(use-package org
:ensure org-plus-contrib
@@ -1557,6 +1562,8 @@ Hansen's]] configs.
("gmap" . "http://maps.google.com/maps?q=%s")
("omap" . "http://nominatim.openstreetmap.org/search?q=%s&polygon=1")))
(org-ellipsis " ")
+ (org-refile-use-outline-path 'file)
+ (org-outline-path-complete-in-steps nil)
:config
(add-hook 'org-mode-hook 'turn-on-org-cdlatex)
(add-to-list 'org-structure-template-alist (cons "f" "figure"))