mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
vim: fix regexp for cleaning search list
This commit is contained in:
parent
5b8f74b512
commit
a04334e959
1 changed files with 1 additions and 1 deletions
|
@ -1270,7 +1270,7 @@ function! s:NM_add_remove_tags_on_screen(online, prefix, tags)
|
||||||
endfor
|
endfor
|
||||||
else
|
else
|
||||||
for tagname in a:tags
|
for tagname in a:tags
|
||||||
exec printf('silent! %ss/(\([^)]*\)\([^)]*\))$/(\1 %s)/', string(a:online), tagname)
|
exec printf('silent! %ss/(\([^)]*\))$/(\1 %s)/', string(a:online), tagname)
|
||||||
endfor
|
endfor
|
||||||
endif
|
endif
|
||||||
setlocal nomodifiable
|
setlocal nomodifiable
|
||||||
|
|
Loading…
Reference in a new issue