|
|
@ -20,6 +20,17 @@
|
|
|
|
(let ((org-refile-targets '((orgfilepath :maxlevel . 1))))
|
|
|
|
(let ((org-refile-targets '((orgfilepath :maxlevel . 1))))
|
|
|
|
(org-refile)))
|
|
|
|
(org-refile)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun filemusic ()
|
|
|
|
|
|
|
|
"Refile heading to specific file based on heading (music edition)"
|
|
|
|
|
|
|
|
(interactive)
|
|
|
|
|
|
|
|
(setq orgheading (org-get-heading))
|
|
|
|
|
|
|
|
(setq orgyear (substring orgheading 0 4))
|
|
|
|
|
|
|
|
(setq orgmonth (substring orgheading 5 7))
|
|
|
|
|
|
|
|
(setq orgfilepath (concat "~/Documents/drive/org/journal/" orgyear "/" orgmonth "/" orgheading ".org"))
|
|
|
|
|
|
|
|
(org-edit-headline "music")
|
|
|
|
|
|
|
|
(let ((org-refile-targets '((orgfilepath :maxlevel . 1))))
|
|
|
|
|
|
|
|
(org-refile)))
|
|
|
|
|
|
|
|
|
|
|
|
(defun filedate ()
|
|
|
|
(defun filedate ()
|
|
|
|
"Insert timestamp if required based on file name"
|
|
|
|
"Insert timestamp if required based on file name"
|
|
|
|
(interactive)
|
|
|
|
(interactive)
|
|
|
|