From eff1d942a8870d246d392fffa18a12f5b64d8bc0 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 21 Jan 2021 14:35:57 +0100 Subject: [PATCH] [Emacs] Update paths for `phundrak/find-org-files' --- org/config/emacs.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org/config/emacs.org b/org/config/emacs.org index d7948d7..5bc32ac 100644 --- a/org/config/emacs.org +++ b/org/config/emacs.org @@ -1343,7 +1343,7 @@ This function is used in my Eshell prompt which you can consult [[#User_Configur :END: There are lots of files which I want to be able to quickly open. I used to have one shortcut for each one of these files, but as their number grew, I decided to switch to helm for my file selector which will be called by only one common shortcut. Most of my files will be located in =~/org=, but I have some conlanging files which are located in =~/Documents/conlanging=, and all my university notes are in =~/Documents/university=. Let’s declare these directories in a variable: #+BEGIN_SRC emacs-lisp - (defvar phundrak/org-directories '("~/org" "~/Documents/university" "~/Documents/conlanging") + (defvar phundrak/org-directories '("~/org" "~/Documents/university/S8" "~/Documents/conlanging") "Directories in which to look for org files with the function `phundrak/find-org-files'") #+END_SRC