From: Bart Trojanowski Date: Thu, 19 Nov 2009 02:13:24 +0000 (-0500) Subject: reverse order so that the latest is at top X-Git-Tag: 0.1~313^2~103 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=cfb18a6cbb3e247c910c427ec2dce96740870730;hp=df5137ff34d97b6dcdc90c8e07d9fb523b7bc2be;ds=sidebyside reverse order so that the latest is at top --- diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index a15f4df5..00ee9842 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -25,10 +25,18 @@ if !exists('g:notmuch_cmd') let g:notmuch_cmd = 'notmuch' endif +if !exists('g:notmuch_search_reverse') + let g:notmuch_search_reverse = 1 +endif + " --- implement search screen function! s:NM_cmd_search(words) - let data = s:NM_run(['search'] + a:words) + let cmd = ['search'] + if g:notmuch_search_reverse + let cmd = cmd + ['--reverse'] + endif + let data = s:NM_run(cmd + a:words) "let data = substitute(data, '27/27', '25/27', '') "let data = substitute(data, '\[4/4\]', '[0/4]', '') let lines = split(data, "\n")