From: Bart Trojanowski Date: Sat, 28 Nov 2009 02:49:40 +0000 (-0500) Subject: vim: use notmuch show --entire-thread X-Git-Tag: 0.1~249 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=8a3352e619de6d347e1eb42011e65a85f0f4c7ca vim: use notmuch show --entire-thread --- diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index b415f500..f33d0582 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -408,7 +408,7 @@ endfunction function! s:NM_cmd_show(words) let prev_bufnr = bufnr('%') - let data = s:NM_run(['show'] + a:words) + let data = s:NM_run(['show', '--entire-thread'] + a:words) let lines = split(data, "\n") let info = s:NM_cmd_show_parse(lines)