mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +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'
|
||||
if part_end || match(line, g:notmuch_show_citation_regexp) == -1
|
||||
let outlnum = len(info['disp'])
|
||||
let foldinfo = [ mode_type, mode_start, outlnum-1,
|
||||
\ printf('[ %d-line citation. Press "c" to show. ]', outlnum - mode_start) ]
|
||||
if mode_start != outlnum
|
||||
let foldinfo = [ mode_type, mode_start, outlnum-1,
|
||||
\ printf('[ %d-line citation. Press "c" to show. ]', outlnum - mode_start) ]
|
||||
endif
|
||||
let mode_type = ''
|
||||
endif
|
||||
elseif mode_type == 'sig'
|
||||
|
|
Loading…
Reference in a new issue