vim: use ,s for editing search query

(save 'S' for marking things as spam)
This commit is contained in:
Bart Trojanowski 2009-11-22 00:35:38 -05:00
parent 0210f960f1
commit b2830acc04
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ Buffer types:
f - filter the current search terms
o - toggle search screen order
s - enter search criteria
S - alter search criteria
es - alter search criteria
t - filter the current search terms with tags
q - return to folder display, or undo filter
+ - add tag(s) to selected message

View file

@ -98,7 +98,7 @@ let g:notmuch_search_maps = {
\ 'o': ':call <SID>NM_search_toggle_order()<CR>',
\ 'r': ':call <SID>NM_search_reply_to_thread()<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>',
\ 'q': ':call <SID>NM_kill_this_buffer()<CR>',
\ '+': ':call <SID>NM_search_add_tags([])<CR>',