Fix #2811: expose more org-roam commands

This commit is contained in:
Henrik Lissner 2020-04-01 17:26:37 -04:00
parent 4434abf1f4
commit 23b3b8211a
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 23 additions and 8 deletions

View file

@ -3,10 +3,15 @@
(use-package! org-roam
:commands (org-roam
org-roam-insert
org-roam-capture
org-roam-date
org-roam-find-file
org-roam-graph-show
org-roam-insert
org-roam-switch-to-buffer
org-roam-graph-show)
org-roam-today
org-roam-tomorrow
org-roam-yesterday)
:preface
;; Set this to nil so we can later detect whether the user has set a custom
;; directory for it, and default to `org-directory' if they haven't.
@ -16,12 +21,16 @@
:map org-mode-map
:localleader
:prefix ("m" . "org-roam")
"m" #'org-roam
"i" #'org-roam-insert
"b" #'org-roam-switch-to-buffer
"f" #'org-roam-find-file
"g" #'org-roam-graph-show
"i" #'org-roam-insert)
"i" #'org-roam-insert
"m" #'org-roam
(:prefix ("d" . "by date")
:desc "Arbitrary date" "d" #'org-roam-date
:desc "Today" "t" #'org-roam-today
:desc "Tomorrow" "m" #'org-roam-tomorrow
:desc "Yesterday" "y" #'org-roam-yesterday))
:config
(unless org-roam-directory
(setq org-roam-directory org-directory))