diff options
-rw-r--r-- | lib/doc/jao-org-notes.el | 5 | ||||
-rw-r--r-- | lib/eos/jao-minibuffer.el | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/doc/jao-org-notes.el b/lib/doc/jao-org-notes.el index 77cca9e..24698b9 100644 --- a/lib/doc/jao-org-notes.el +++ b/lib/doc/jao-org-notes.el @@ -103,8 +103,9 @@ (interactive "P") (when refresh (jao-org-notes--update-tags)) (or jao-org-notes--tags - (setq jao-org-notes--tags - (read (find-file-noselect jao-org-notes-tags-cache-file))))) + (let ((b (find-file-noselect jao-org-notes-tags-cache-file))) + (with-current-buffer b (goto-char (point-min))) + (setq jao-org-notes--tags (read b))))) (defun jao-org-notes--read-tags () (unless jao-org-notes--tags (jao-org-notes-read-tags-cache)) diff --git a/lib/eos/jao-minibuffer.el b/lib/eos/jao-minibuffer.el index 4528aa7..42b7ed6 100644 --- a/lib/eos/jao-minibuffer.el +++ b/lib/eos/jao-minibuffer.el @@ -120,7 +120,8 @@ ((not (null eww-data)) (plist-get eww-data :title)) (w3m-current-title) (t "%b"))) - "%] %*%+ " + "%]" + (:propertize " %*%+ " face jao-themes-warning) (:propertize mode-name face jao-themes-f00) (:propertize ("" minor-mode-alist (vc-mode vc-mode)) face jao-themes-f11) (:propertize mode-line-position face jao-themes-f12) |