From 957c5ceaef3a9542a14a93051bd8493ff4b8638a Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 25 Jan 2014 02:48:17 +0200 Subject: [PATCH] * mu4e: fix regexp --- mu4e/mu4e-main.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mu4e/mu4e-main.el b/mu4e/mu4e-main.el index a14a3982..b6c54c16 100644 --- a/mu4e/mu4e-main.el +++ b/mu4e/mu4e-main.el @@ -77,7 +77,7 @@ a string, execute the corresponding keyboard action when it is clicked." (let ((newstr (replace-regexp-in-string - "\\[\\(\\.\\)\\]" + "\\[\\(.\\)\\]" (lambda(m) (format "[%s]" (propertize (match-string 1 m) 'face 'mu4e-highlight-face))) @@ -118,7 +118,7 @@ clicked." "\n\n" (propertize " Basics\n\n" 'face 'mu4e-title-face) (mu4e~main-action-str "\t* [j]ump to some maildir\n" 'mu4e-jump-to-maildir) - (mu4e~main-action-str "\t* enter a [s]earch query\n" 'mu4e-search) + (mu4e~main-action-str "\t* enter a [/]earch query\n" 'mu4e-search) (mu4e~main-action-str "\t* [C]ompose a new message\n" 'mu4e-compose-new) "\n" (propertize " Bookmarks\n\n" 'face 'mu4e-title-face)