diff options
author | noa | 2024-10-09 14:49:05 +0800 |
---|---|---|
committer | noa | 2024-10-09 14:49:05 +0800 |
commit | 4ad01e4454d645efe8ee98e2dd87d916d8815d49 (patch) | |
tree | cf47fca7e409ea4bf93fcfb7ab7821de3367bc0d | |
parent | 849efca9114d499854f6b87a98b18f1b803ff2e0 (diff) |
Don't search recursively with xeft
-rw-r--r-- | emacs/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index 0c3e08f..62bff3d 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -762,7 +762,8 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." (xeft-directory "~/Documents/notes") (xeft-filename-fn (lambda (search) (format-time-string "%Y-%m-%dT%H%M%S.md"))) - (xeft-recursive t)) + (xeft-recursive nil)) + (defun noa/yank-buffer-file-name () (interactive) (when (buffer-file-name) |