Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[org] add keybinding for org-roam-dailies-find-date #14325

Merged
merged 1 commit into from Feb 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.develop
Expand Up @@ -2898,6 +2898,8 @@ files (thanks to Daniel Nicolai)
- ~SPC a o r d t~ (~SPC m r d t~) Open today's daily note
- ~SPC a o r d T~ (~SPC m r d T~) Open tomorrow's daily note
(thanks to Mariusz Klochowicz)
- ~SPC a o r d d~ (~SPC m r d d~) Open daily note via calendar view
(thanks to Ben Swift)
- Added additional prefix (~SPC m m j~) for org-jira bindings
(thanks to Mariusz Klochowicz)
- Made =org= layer depend on =spacemacs-org= (thanks to Eivind Fonn)
Expand Down
1 change: 1 addition & 0 deletions layers/+emacs/org/README.org
Expand Up @@ -941,5 +941,6 @@ Key binding prefixes:
| ~[prefix] r d y~ | Open yesterday's daily note |
| ~[prefix] r d t~ | Open today's daily note |
| ~[prefix] r d T~ | Open tomorrow's daily note |
| ~[prefix] r d d~ | Open daily note via calendar view |
| ~[prefix] r t a~ | add org-roam tag to file |
| ~[prefix] r t d~ | delete org-roam tag from file |
3 changes: 3 additions & 0 deletions layers/+emacs/org/packages.el
Expand Up @@ -865,6 +865,7 @@ Headline^^ Visit entry^^ Filter^^ Da
org-roam-dailies-find-yesterday
org-roam-dailies-find-today
org-roam-dailies-find-tomorrow
org-roam-dailies-find-date
org-roam-tag-add
org-roam-tag-delete)
:init
Expand All @@ -876,6 +877,7 @@ Headline^^ Visit entry^^ Filter^^ Da
"aordy" 'org-roam-dailies-find-yesterday
"aordt" 'org-roam-dailies-find-today
"aordT" 'org-roam-dailies-find-tomorrow
"aordd" 'org-roam-dailies-find-date
"aorf" 'org-roam-find-file
"aorg" 'org-roam-graph
"aori" 'org-roam-insert
Expand All @@ -892,6 +894,7 @@ Headline^^ Visit entry^^ Filter^^ Da
"rdy" 'org-roam-dailies-find-yesterday
"rdt" 'org-roam-dailies-find-today
"rdT" 'org-roam-dailies-find-tomorrow
"rdd" 'org-roam-dailies-find-date
"rf" 'org-roam-find-file
"rg" 'org-roam-graph
"ri" 'org-roam-insert
Expand Down