diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2020-02-11 08:29:18 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2020-02-11 08:29:18 -0800 |
commit | 783ff247dfdfbe4a1b3f0379ce4f2b2604519b7e (patch) | |
tree | 90d4e942818bf67bcba4b9962f2c0999d54e0a88 /emacs | |
parent | org: change the default priorities (diff) | |
download | emacs.d-783ff247dfdfbe4a1b3f0379ce4f2b2604519b7e.tar.gz |
org: don't narrow when capturing a journal entry.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-org.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs.d/custom/fcuny-org.el b/emacs.d/custom/fcuny-org.el index 108fb86..95c26dd 100644 --- a/emacs.d/custom/fcuny-org.el +++ b/emacs.d/custom/fcuny-org.el @@ -241,7 +241,7 @@ _g n_: go to notes ("j" "Journal" entry (file+olp+datetree ,org-default-journal-file) - "* %?\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U\n:END:\n" :tree-type month) + "* %?\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U\n:END:\n" :tree-type month :unnarrowed t) ("m" "Meeting notes" entry (file ,org-default-inbox-file) @@ -253,7 +253,7 @@ _g n_: go to notes ("J" "Work Journal" entry (file+olp+datetree ,org-default-work-journal-file) - "* %?\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U\n:END:\n" :tree-type month)))) + "* %?\n:PROPERTIES:\n:ID: %(shell-command-to-string \"uuidgen\"):CREATED: %U\n:END:\n" :tree-type month :unnarrowed t)))) (use-package htmlize :ensure t) |