mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
vim: fix citation/signature fold lengths
Before they'd often miss the last line Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
parent
6c6c8a9c85
commit
8b10e4d569
1 changed files with 7 additions and 4 deletions
|
@ -747,8 +747,11 @@ function! s:NM_cmd_show_parse(inlines)
|
|||
elseif mode_type == 'cit'
|
||||
if part_end || match(line, g:notmuch_show_citation_regexp) == -1
|
||||
let outlnum = len(info['disp'])
|
||||
let foldinfo = [ mode_type, mode_start, outlnum-1, len(info['msgs']),
|
||||
\ printf('[ %d-line citation. Press "c" to show. ]', outlnum - mode_start) ]
|
||||
if !part_end
|
||||
let outlnum = outlnum - 1
|
||||
endif
|
||||
let foldinfo = [ mode_type, mode_start, outlnum, len(info['msgs']),
|
||||
\ printf('[ %d-line citation. Press "c" to show. ]', 1 + outlnum - mode_start) ]
|
||||
let mode_type = ''
|
||||
endif
|
||||
elseif mode_type == 'sig'
|
||||
|
@ -756,8 +759,8 @@ function! s:NM_cmd_show_parse(inlines)
|
|||
if (outlnum - mode_start) > g:notmuch_show_signature_lines_max
|
||||
let mode_type = ''
|
||||
elseif part_end
|
||||
let foldinfo = [ mode_type, mode_start, outlnum-1, len(info['msgs']),
|
||||
\ printf('[ %d-line signature. Press "i" to show. ]', outlnum - mode_start) ]
|
||||
let foldinfo = [ mode_type, mode_start, outlnum, len(info['msgs']),
|
||||
\ printf('[ %d-line signature. Press "i" to show. ]', 1 + outlnum - mode_start) ]
|
||||
let mode_type = ''
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue