diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-08-02 22:49:19 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-08-02 22:49:19 +0800 |
commit | 6814250a0c95e0849c191e7f5fe8e2a8bee31440 (patch) | |
tree | e48ff0faa822b1bb7f0d626d58732f40b6b97e8b /_spacemacs.d/local/mu4e/mu4e-main.el | |
parent | 98083f04530335e8f98589373ecfad8948b86ae8 (diff) | |
download | dotfiles-6814250a0c95e0849c191e7f5fe8e2a8bee31440.tar.bz2 |
spacemacs: update mu/mu4e to git20160802
Diffstat (limited to '_spacemacs.d/local/mu4e/mu4e-main.el')
-rw-r--r-- | _spacemacs.d/local/mu4e/mu4e-main.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/_spacemacs.d/local/mu4e/mu4e-main.el b/_spacemacs.d/local/mu4e/mu4e-main.el index 0f4dc78..a647a2d 100644 --- a/_spacemacs.d/local/mu4e/mu4e-main.el +++ b/_spacemacs.d/local/mu4e/mu4e-main.el @@ -137,11 +137,11 @@ clicked." ;; TODO: it's a bit uncool to hard-code the "b" shortcut... (mapconcat (lambda (bm) - (let* ((query (nth 0 bm)) (title (nth 1 bm)) (key (nth 2 bm))) - (mu4e~main-action-str - (concat "\t* [b" (make-string 1 key) "] " title) - (concat "b" (make-string 1 key))))) - mu4e-bookmarks "\n") + (mu4e~main-action-str + (concat "\t* [b" (make-string 1 (mu4e-bookmark-key bm)) "] " + (mu4e-bookmark-name bm)) + (concat "b" (make-string 1 (mu4e-bookmark-key bm))))) + (mu4e-bookmarks) "\n") "\n\n" (propertize " Misc\n\n" 'face 'mu4e-title-face) |