diff options
author | Bram Schoenmakers <[email protected]> | 2021-08-09 20:36:38 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-09 18:36:38 +0000 |
commit | 942a3f481085580d08f21652d660a076f752caa4 (patch) | |
tree | 402747c2fe61f28e63ef8cf3c13b1ffcdb6e6871 | |
parent | ccf8dd47bdb04289cce7ae690d9ce21c09254a01 (diff) |
Lighter name should be prefixed by space (#54)
Convention appears to be that the name is prefixed by a space, not suffixed.
-rw-r--r-- | org-roam-ui.el | 4 |
1 files changed, 2 insertions, 2 deletions
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 |