dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 33b7f501a33598fd38bc1bfdeacb27eac755bb91
parent 67924ac64eae5a4e3f3c4d7a7e8f339071e9ecc4
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Fri, 20 May 2022 10:51:55 +0200

emacs: fix org-agenda-text-search-extra-files

It included the data dir and that caused problems.

Diffstat:
Memacs/config.org | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -411,10 +411,10 @@ Which files should be included in the agenda (I have to use ~list~ to evaluate t za/org-life-tickler)) #+end_src -I want to search all files in the life directory: +I want to search all Org files in the life directory: #+begin_src emacs-lisp - (setq org-agenda-text-search-extra-files (directory-files za/org-life-dir t (rx bol (not ?.) (* anything)))) + (setq org-agenda-text-search-extra-files (directory-files za/org-life-dir t (rx bol (not ?.) (* anything) ".org"))) #+end_src Convenience functions to make opening the main file faster: