summaryrefslogtreecommitdiff
path: root/org-roam-ui.el
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-07-29 18:25:08 +0200
committerThomas F. K. Jorna <[email protected]>2021-07-29 18:25:08 +0200
commite61f1e124f052e2317385b48f0b474175f685378 (patch)
treea62b3d26ba740a4e036ca809a3e125c0e594043e /org-roam-ui.el
parent22f6ecfc21b3899a832e1c24b8c40f41f09e9d25 (diff)
emacsnode for mlord
Diffstat (limited to 'org-roam-ui.el')
-rw-r--r--org-roam-ui.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/org-roam-ui.el b/org-roam-ui.el
index 183902f..8f7cc56 100644
--- a/org-roam-ui.el
+++ b/org-roam-ui.el
@@ -268,13 +268,13 @@ The padding around the nodes in the viewport."
(defun orui-toggle-following ()
"Set whether ORUI should follow your every move in emacs. Default yes."
(interactive)
- (if (member #'org-roam-ui--update-current-node (default-value 'post-command-hook))
+ (if (member 'org-roam-ui--update-current-node (default-value 'post-command-hook))
(progn
(remove-hook 'post-command-hook #'org-roam-ui--update-current-node)
- (message "Org-Roam-UI will now leave you alone.")
+ (message "Org-Roam-UI will now leave you alone."))
(add-hook 'post-command-hook #'org-roam-ui--update-current-node)
(message "Org-Roam-UI will now follow you around."))
- ))
+ )
(defun orui-toggle-local-zoom ()
"Toggles whether org-roam-ui should go to the local view of a given node or zoom to it.