mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
vim: use ,s for editing search query
(save 'S' for marking things as spam)
This commit is contained in:
parent
0210f960f1
commit
b2830acc04
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ Buffer types:
|
||||||
f - filter the current search terms
|
f - filter the current search terms
|
||||||
o - toggle search screen order
|
o - toggle search screen order
|
||||||
s - enter search criteria
|
s - enter search criteria
|
||||||
S - alter search criteria
|
es - alter search criteria
|
||||||
t - filter the current search terms with tags
|
t - filter the current search terms with tags
|
||||||
q - return to folder display, or undo filter
|
q - return to folder display, or undo filter
|
||||||
+ - add tag(s) to selected message
|
+ - add tag(s) to selected message
|
||||||
|
|
|
@ -98,7 +98,7 @@ let g:notmuch_search_maps = {
|
||||||
\ 'o': ':call <SID>NM_search_toggle_order()<CR>',
|
\ 'o': ':call <SID>NM_search_toggle_order()<CR>',
|
||||||
\ 'r': ':call <SID>NM_search_reply_to_thread()<CR>',
|
\ 'r': ':call <SID>NM_search_reply_to_thread()<CR>',
|
||||||
\ 's': ':call <SID>NM_search_prompt()<CR>',
|
\ 's': ':call <SID>NM_search_prompt()<CR>',
|
||||||
\ 'S': ':call <SID>NM_search_edit()<CR>',
|
\ ',s': ':call <SID>NM_search_edit()<CR>',
|
||||||
\ 't': ':call <SID>NM_search_filter_by_tag()<CR>',
|
\ 't': ':call <SID>NM_search_filter_by_tag()<CR>',
|
||||||
\ 'q': ':call <SID>NM_kill_this_buffer()<CR>',
|
\ 'q': ':call <SID>NM_kill_this_buffer()<CR>',
|
||||||
\ '+': ':call <SID>NM_search_add_tags([])<CR>',
|
\ '+': ':call <SID>NM_search_add_tags([])<CR>',
|
||||||
|
|
Loading…
Reference in a new issue