c - toggle folding of citations
h - toggle folding of extra header lines
m - compose a new message
+ r - reply to the message
s - toggle folding of signatures
q - return to search display
? - reveal the message and thread IDs of what's under cursor
endfunction
function! s:NM_show_reply()
- echo 'not implemented'
+ let cmd = ['reply']
+ call add(cmd, <SID>NM_show_message_id())
+ call add(cmd, 'AND')
+ call extend(cmd, <SID>NM_get_search_words())
+
+ let data = <SID>NM_run(cmd)
+ let lines = split(data, "\n")
+ call <SID>NM_newComposeBuffer(lines, 0)
endfunction
function! s:NM_show_view_all_mime_parts()