diff options
author | jao <jao@gnu.org> | 2021-06-11 19:43:46 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-06-11 19:43:46 +0100 |
commit | 330d3743c65aa61991d61090b1b9869bbf484586 (patch) | |
tree | 689b7995b9e2bffaea44673a96f578cbca25b10c | |
parent | 51c8350be8979bc1e54bb657f155467dbe788bc5 (diff) | |
download | elibs-330d3743c65aa61991d61090b1b9869bbf484586.tar.gz elibs-330d3743c65aa61991d61090b1b9869bbf484586.tar.bz2 |
little completion tweaks
-rw-r--r-- | completion.org | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/completion.org b/completion.org index a984ac2..4e1c267 100644 --- a/completion.org +++ b/completion.org @@ -48,7 +48,8 @@ (use-package vertico :ensure t :init (setq vertico-count 20 - vertico-cycle t) + vertico-cycle t + org-refile-use-outline-path t) :config ;; (defun jao--be-orderless (&rest _any) @@ -113,7 +114,7 @@ :config (require 'jao-compilation) (defun jao-consult-project-root () - (expand-file-name (or (jao-compilation-root) (vc-root-dir) ""))) + (expand-file-name (or (vc-root-dir) (jao-compilation-root) ""))) (setq consult-project-root-function #'jao-consult-project-root) |