mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Look at whitespace to separate folder name from count
This allows folder names to contain any non-blank characters Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
b58dcfb702
commit
b16a767f51
1 changed files with 2 additions and 2 deletions
|
@ -1537,8 +1537,8 @@ Currently available key bindings:
|
|||
(save-excursion
|
||||
(beginning-of-line)
|
||||
(let ((beg (point)))
|
||||
(forward-word)
|
||||
(filter-buffer-substring beg (point)))))
|
||||
(re-search-forward "\\([ \t]*[^ \t]+\\)")
|
||||
(filter-buffer-substring (match-beginning 1) (match-end 1)))))
|
||||
|
||||
(defun notmuch-folder-show-search (&optional folder)
|
||||
"Show a search window for the search related to the specified folder."
|
||||
|
|
Loading…
Reference in a new issue