From ad70b820097d53f95cc8b18e7b60228bc5e9c66f Mon Sep 17 00:00:00 2001 From: Kelvin Porter Date: Mon, 30 Mar 2020 03:14:01 -0400 Subject: [PATCH] org-roam-show-graph -> org-roam-graph-show org-roam-show-graph marked obsolete by org-roam commit 22b9d4b, see https://github.com/jethrokuan/org-roam/pull/363 --- modules/config/default/+evil-bindings.el | 2 +- modules/lang/org/contrib/roam.el | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index 027fa023e..913239a52 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -487,7 +487,7 @@ :desc "Switch to buffer" "b" #'org-roam-switch-to-buffer :desc "Insert" "i" #'org-roam-insert :desc "Find file" "f" #'org-roam-find-file - :desc "Show graph" "g" #'org-roam-show-graph)) + :desc "Show graph" "g" #'org-roam-graph-show)) (:when (featurep! :lang org +journal) (:prefix ("j" . "journal") diff --git a/modules/lang/org/contrib/roam.el b/modules/lang/org/contrib/roam.el index 142c3bdd0..2ac1c7dce 100644 --- a/modules/lang/org/contrib/roam.el +++ b/modules/lang/org/contrib/roam.el @@ -6,7 +6,7 @@ org-roam-insert org-roam-find-file org-roam-switch-to-buffer - org-roam-show-graph) + org-roam-graph-show) :init (map! :after org :map org-mode-map @@ -16,7 +16,7 @@ "i" #'org-roam-insert "b" #'org-roam-switch-to-buffer "f" #'org-roam-find-file - "g" #'org-roam-show-graph + "g" #'org-roam-graph-show "i" #'org-roam-insert) :config (setq org-roam-directory org-directory)