aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-01-11 01:45:38 +0100
committerJustin M. Keyes <justinkz@gmail.com>2019-01-11 01:45:38 +0100
commit99429e5f415bfbb8298142c0e10b76a7ef9428bf (patch)
tree69dd0ea861367c08ee546d34cb82dff5b3051d7f /src/nvim/testdir
parent3f10c5b5338fc7efec53a23427e1c0e2dea56be4 (diff)
parent56dec2a3a04a834652c8e118871d63a9328e3af5 (diff)
downloadrneovim-99429e5f415bfbb8298142c0e10b76a7ef9428bf.tar.gz
rneovim-99429e5f415bfbb8298142c0e10b76a7ef9428bf.tar.bz2
rneovim-99429e5f415bfbb8298142c0e10b76a7ef9428bf.zip
Merge #9481 'vim-patch:8.1.0449,8.1.0450'
closes #9481
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_fold.vim20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_fold.vim b/src/nvim/testdir/test_fold.vim
index 0b4b5d1922..df3d691d85 100644
--- a/src/nvim/testdir/test_fold.vim
+++ b/src/nvim/testdir/test_fold.vim
@@ -704,6 +704,26 @@ func Test_fold_last_line_with_pagedown()
enew!
endfunc
+func Test_folds_with_rnu()
+ if !CanRunVimInTerminal()
+ return
+ endif
+
+ call writefile([
+ \ 'set fdm=marker rnu foldcolumn=2',
+ \ 'call setline(1, ["{{{1", "nline 1", "{{{1", "line 2"])',
+ \ ], 'Xtest_folds_with_rnu')
+ let buf = RunVimInTerminal('-S Xtest_folds_with_rnu', {})
+
+ call VerifyScreenDump(buf, 'Test_folds_with_rnu_01', {})
+ call term_sendkeys(buf, "j")
+ call VerifyScreenDump(buf, 'Test_folds_with_rnu_02', {})
+
+ " clean up
+ call StopVimInTerminal(buf)
+ call delete('Xtest_folds_with_rnu')
+endfunc
+
func Test_folds_marker_in_comment2()
new
call setline(1, ['Lorem ipsum dolor sit', 'Lorem ipsum dolor sit', 'Lorem ipsum dolor sit'])