aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2026-01-30 07:47:27 -0500
committerBardofSprites <[email protected]>2026-01-30 07:47:27 -0500
commit4fb0bf4471ffdd27f09a194276186d44f34bd771 (patch)
tree27fdb6a3bdd324fce7c87c84162700af993fd72f
parent83413950401a1549fbfdefd19cbc4d3fb0285aae (diff)
adjust org-goto depth
-rw-r--r--bard-emacs-modules/bard-emacs-org.el4
-rw-r--r--config.org3
2 files changed, 5 insertions, 2 deletions
diff --git a/bard-emacs-modules/bard-emacs-org.el b/bard-emacs-modules/bard-emacs-org.el
index a34a917..40ad341 100644
--- a/bard-emacs-modules/bard-emacs-org.el
+++ b/bard-emacs-modules/bard-emacs-org.el
@@ -16,7 +16,9 @@
:bind
(("C-c c" . org-capture))
:config
- (setq org-goto-interface 'outline-path-completion)
+ (setq org-goto-interface 'outline-path-completion
+ org-outline-path-complete-in-steps nil
+ org-goto-max-level '2)
(setq org-special-ctrl-a/e t)
(setq safe-local-variable-values '((org-refile-targets (nil :maxlevel . 3)))))
diff --git a/config.org b/config.org
index 4ddd4ba..e6ba70c 100644
--- a/config.org
+++ b/config.org
@@ -1299,7 +1299,8 @@ For a long time I really struggled with Emacs tab completion. It still only kind
(("C-c c" . org-capture))
:config
(setq org-goto-interface 'outline-path-completion
- org-outline-path-complete-in-steps nil)
+ org-outline-path-complete-in-steps nil
+ org-goto-max-level '2)
(setq org-special-ctrl-a/e t)
(setq safe-local-variable-values '((org-refile-targets (nil :maxlevel . 3)))))
#+end_src