[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Create agenda file if non-existant.
smart-documents.org
@@ -1313,6 +1313,14 @@
1313
1313
1314
1314
*** List of agenda files
1315
1315
1316
Added:
If the agenda file does not already exist, create it at the expected location.
1317
Added:
1318
Added:
#+BEGIN_SRC emacs-lisp :tangle yes
1319
Added:
(unless (file-exists-p (concat sd-path-meta "org-agenda-files"))
1320
Added:
(with-temp-buffer
1321
Added:
(write-file (concat sd-path-meta "org-agenda-files"))))
1322
Added:
#+END_SRC
1323
Added:
1316
1324
The list of agenda files is saved at the following location.
1317
1325
1318
1326
#+BEGIN_SRC emacs-lisp :tangle yes