mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
updated for version 7.0074
This commit is contained in:
@ -273,7 +273,7 @@ else
|
||||
let s:end = line("$")
|
||||
endif
|
||||
|
||||
if has('folding')
|
||||
if has('folding') && !exists('html_ignore_folding')
|
||||
let s:foldfillchar = &fillchars[matchend(&fillchars, 'fold:')]
|
||||
if s:foldfillchar == ''
|
||||
let s:foldfillchar = '-'
|
||||
@ -327,7 +327,7 @@ while s:lnum <= s:end
|
||||
let s:new = ""
|
||||
endif
|
||||
|
||||
if has('folding') && foldclosed(s:lnum) > -1
|
||||
if has('folding') && !exists('html_ignore_folding') && foldclosed(s:lnum) > -1
|
||||
"
|
||||
" This is the beginning of a folded block
|
||||
"
|
||||
|
Reference in New Issue
Block a user