From 942a3f481085580d08f21652d660a076f752caa4 Mon Sep 17 00:00:00 2001 From: Bram Schoenmakers Date: Mon, 9 Aug 2021 20:36:38 +0200 Subject: Lighter name should be prefixed by space (#54) Convention appears to be that the name is prefixed by a space, not suffixed. --- org-roam-ui.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'org-roam-ui.el') diff --git a/org-roam-ui.el b/org-roam-ui.el index efea3af..47a8413 100644 --- a/org-roam-ui.el +++ b/org-roam-ui.el @@ -141,7 +141,7 @@ Defaults to #'browse-url." org-roam-ui-mode "Enable org-roam-ui. This serves the web-build and API over HTTP." - :lighter "org-roam-ui " + :lighter " org-roam-ui" :global t :group 'org-roam-ui :init-value nil @@ -435,7 +435,7 @@ Optionally with ID (string), SPEED (number, ms) and PADDING (number, px)." ;;;###autoload (define-minor-mode org-roam-ui-follow-mode "Set whether ORUI should follow your every move in Emacs." - :lighter "org-roam-ui " + :lighter " org-roam-ui" :global t :group 'org-roam-ui :init-value nil -- cgit v1.2.3 From b153f4fee99e36dec0fb56d987026d53bf97a0e8 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Tue, 10 Aug 2021 14:01:21 +0200 Subject: Fix: #58 --- org-roam-ui.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'org-roam-ui.el') diff --git a/org-roam-ui.el b/org-roam-ui.el index 47a8413..54a0400 100644 --- a/org-roam-ui.el +++ b/org-roam-ui.el @@ -328,7 +328,7 @@ unchanged." (unless (string= org-roam-ui--ws-current-node node) (setq org-roam-ui--ws-current-node node) (websocket-send-text oru-ws (json-encode `((type . "command") - (data. ((commandName . "follow") + (data . ((commandName . "follow") (id . ,node)))))))))) -- cgit v1.2.3