mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 15:38:33 +00:00
vim-patch:8.0.0407 : filtering folds with marker method not tested
Problem: Filtering folds with marker method not tested. Solution: Also set 'foldmethod' to "marker".
This commit is contained in:
@@ -120,6 +120,8 @@ func Test_manual_fold_with_filter()
|
|||||||
if !executable('cat')
|
if !executable('cat')
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
|
for type in ['manual', 'marker']
|
||||||
|
exe 'set foldmethod=' . type
|
||||||
new
|
new
|
||||||
call setline(1, range(1, 20))
|
call setline(1, range(1, 20))
|
||||||
4,$fold
|
4,$fold
|
||||||
@@ -130,7 +132,10 @@ func Test_manual_fold_with_filter()
|
|||||||
1,8! cat
|
1,8! cat
|
||||||
call feedkeys('5ggzdzMGdd', 'xt')
|
call feedkeys('5ggzdzMGdd', 'xt')
|
||||||
call assert_equal(['1', '2', '3', '4', '5', '6', '7', '8', '9'], getline(1, '$'))
|
call assert_equal(['1', '2', '3', '4', '5', '6', '7', '8', '9'], getline(1, '$'))
|
||||||
|
|
||||||
bwipe!
|
bwipe!
|
||||||
|
set foldmethod&
|
||||||
|
endfor
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func! Test_move_folds_around_manual()
|
func! Test_move_folds_around_manual()
|
||||||
|
Reference in New Issue
Block a user