mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
added tagging and refresh to search screen
This commit is contained in:
parent
804715316b
commit
84f33e6546
2 changed files with 69 additions and 18 deletions
|
@ -18,7 +18,11 @@ Buffer types:
|
||||||
|
|
||||||
Keybindings:
|
Keybindings:
|
||||||
<Enter> - show the selected message
|
<Enter> - show the selected message
|
||||||
s - alter search criteria
|
s - enter search criteria
|
||||||
|
S - alter search criteria
|
||||||
|
+ - add tag(s) to selected message
|
||||||
|
- - remove tag(s) from selected message
|
||||||
|
= - refresh display
|
||||||
|
|
||||||
[notmuch-show]
|
[notmuch-show]
|
||||||
This is the display of the message.
|
This is the display of the message.
|
||||||
|
|
|
@ -72,9 +72,10 @@ 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>',
|
||||||
\ 't': ':call <SID>NM_search_filter_by_tag()<CR>',
|
\ 't': ':call <SID>NM_search_filter_by_tag()<CR>',
|
||||||
\ '+': ':call <SID>NM_search_add_tag()<CR>',
|
\ '+': ':call <SID>NM_search_add_tags([])<CR>',
|
||||||
\ '-': ':call <SID>NM_search_remove_tag()<CR>',
|
\ '-': ':call <SID>NM_search_remove_tags([])<CR>',
|
||||||
\ '=': ':call <SID>NM_search_refresh_view()<CR>',
|
\ '=': ':call <SID>NM_search_refresh_view()<CR>',
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
|
@ -109,24 +110,34 @@ function! s:NM_cmd_search(words)
|
||||||
setlocal nowrap
|
setlocal nowrap
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
" --- --- search screen action functions {{{2
|
||||||
|
|
||||||
function! s:NM_search_show_thread()
|
function! s:NM_search_show_thread()
|
||||||
if !exists('b:nm_raw_lines')
|
let id = NM_search_find_thread_id()
|
||||||
echo 'no b:nm_raw_lines'
|
if id != ''
|
||||||
else
|
call s:NM_cmd_show([id])
|
||||||
let line = line('.')
|
|
||||||
let info = b:nm_raw_lines[line-1]
|
|
||||||
let what = split(info, '\s\+')[0]
|
|
||||||
call s:NM_cmd_show([what])
|
|
||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:NM_search_prompt()
|
function! s:NM_search_prompt()
|
||||||
let new_list = input('NotMuch Search: ', join(g:notmuch_current_search_words, ' '))
|
" TODO: input() can support completion
|
||||||
call <SID>NM_cmd_search(split(new_list))
|
let text = input('NotMuch Search: ')
|
||||||
|
if strlen(text)
|
||||||
|
call <SID>NM_cmd_search(split(text))
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! s:NM_search_edit()
|
||||||
|
" TODO: input() can support completion
|
||||||
|
let text = input('NotMuch Search: ', join(g:notmuch_current_search_words, ' '))
|
||||||
|
if strlen(text)
|
||||||
|
call <SID>NM_cmd_search(split(text))
|
||||||
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:NM_search_archive_thread()
|
function! s:NM_search_archive_thread()
|
||||||
echoe 'Not implemented'
|
call <SID>NM_search_remove_tags('inbox')
|
||||||
|
norm j
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:NM_search_filter()
|
function! s:NM_search_filter()
|
||||||
|
@ -149,18 +160,54 @@ function! s:NM_search_filter_by_tag()
|
||||||
echoe 'Not implemented'
|
echoe 'Not implemented'
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:NM_search_add_tag()
|
function! s:NM_search_add_tags(tags)
|
||||||
echoe 'Not implemented'
|
call <SID>NM_search_add_remove_tags('Add Tag(s): ', '+', a:tags)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:NM_search_remove_tag()
|
function! s:NM_search_remove_tags(tags)
|
||||||
echoe 'Not implemented'
|
call <SID>NM_search_add_remove_tags('Remove Tag(s): ', '-', a:tags)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:NM_search_refresh_view()
|
function! s:NM_search_refresh_view()
|
||||||
echoe 'Not implemented'
|
let lno = line('.')
|
||||||
|
call s:NM_cmd_search(g:notmuch_current_search_words)
|
||||||
|
" FIXME: should find the line of the thread we were on if possible
|
||||||
|
exec printf('norm %dG', lno)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
" --- --- search screen helper functions {{{2
|
||||||
|
|
||||||
|
function! s:NM_search_find_thread_id()
|
||||||
|
if !exists('b:nm_raw_lines')
|
||||||
|
echoe 'no b:nm_raw_lines'
|
||||||
|
return ''
|
||||||
|
else
|
||||||
|
let line = line('.')
|
||||||
|
let info = b:nm_raw_lines[line-1]
|
||||||
|
let what = split(info, '\s\+')[0]
|
||||||
|
return what
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
function! s:NM_search_add_remove_tags(prompt, prefix, intags)
|
||||||
|
let id = <SID>NM_search_find_thread_id()
|
||||||
|
if id != ''
|
||||||
|
if type(a:intags) != type([]) || len(a:intags) == 0
|
||||||
|
" TODO: input() can support completion
|
||||||
|
let text = input(a:prompt)
|
||||||
|
if !strlen(text)
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
let tags = split(text, ' ')
|
||||||
|
else
|
||||||
|
let tags = a:intags
|
||||||
|
endif
|
||||||
|
call map(tags, 'a:prefix . v:val')
|
||||||
|
" TODO: handle errors
|
||||||
|
call <SID>NM_run(['tag'] + tags + ['--', id])
|
||||||
|
call <SID>NM_search_refresh_view()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
" --- implement show screen {{{1
|
" --- implement show screen {{{1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue