Add function org-roam-find-file

org-roam-find-file can be used to quickly navigate to a file in Roam.
This commit is contained in:
Jethro Kuan
2020-02-06 16:14:23 +08:00
parent 341e60cc40
commit 9d88334dd5
2 changed files with 14 additions and 3 deletions

View File

@ -60,10 +60,11 @@ package manager.
(use-package org-roam
:after deft org
:hook (org-mode . org-roam-mode)
:straight (:host "github" :repo "jethrokuan/org-roam")
:straight (:host github :repo "jethrokuan/org-roam")
:bind
("C-c n l" . org-roam)
("C-c n l" . org-roam)
("C-c n t" . org-roam-today)
("C-c n f" . org-roam-find-file)
("C-c n i" . org-roam-insert)
("C-c n g" . org-roam-show-graph))
```