mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +01:00
don't fold single lines
This commit is contained in:
parent
3e4f9009ae
commit
64339e6324
1 changed files with 4 additions and 2 deletions
|
@ -468,8 +468,10 @@ function! s:NM_cmd_show_parse(inlines)
|
||||||
elseif mode_type == 'cit'
|
elseif mode_type == 'cit'
|
||||||
if part_end || match(line, g:notmuch_show_citation_regexp) == -1
|
if part_end || match(line, g:notmuch_show_citation_regexp) == -1
|
||||||
let outlnum = len(info['disp'])
|
let outlnum = len(info['disp'])
|
||||||
let foldinfo = [ mode_type, mode_start, outlnum-1,
|
if mode_start != outlnum
|
||||||
\ printf('[ %d-line citation. Press "c" to show. ]', outlnum - mode_start) ]
|
let foldinfo = [ mode_type, mode_start, outlnum-1,
|
||||||
|
\ printf('[ %d-line citation. Press "c" to show. ]', outlnum - mode_start) ]
|
||||||
|
endif
|
||||||
let mode_type = ''
|
let mode_type = ''
|
||||||
endif
|
endif
|
||||||
elseif mode_type == 'sig'
|
elseif mode_type == 'sig'
|
||||||
|
|
Loading…
Reference in a new issue