diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-01-27 08:30:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 08:30:24 +0100 |
commit | 00915864f72e0052ecdb40629c838c622c7720a0 (patch) | |
tree | 9288ef69dfbd3fe6b9224b52d3ea9d2ceff8b598 | |
parent | 6006e15e7ac055de1e87bbd12d17d017dfa8737f (diff) | |
parent | 1b184cea3b6d93fddb34a77fa2ddaf3bca8d1bb7 (diff) | |
download | rneovim-00915864f72e0052ecdb40629c838c622c7720a0.tar.gz rneovim-00915864f72e0052ecdb40629c838c622c7720a0.tar.bz2 rneovim-00915864f72e0052ecdb40629c838c622c7720a0.zip |
Merge pull request #17184 from zeertzjq/vim-8.2.4190
vim-patch:8.2.4190: all conceal tests are skipped without the screendumps feature
-rw-r--r-- | src/nvim/testdir/test_conceal.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_conceal.vim b/src/nvim/testdir/test_conceal.vim index 1306dbe5cf..bffc2f49d3 100644 --- a/src/nvim/testdir/test_conceal.vim +++ b/src/nvim/testdir/test_conceal.vim @@ -4,10 +4,10 @@ source check.vim CheckFeature conceal source screendump.vim -" CheckScreendump func Test_conceal_two_windows() CheckScreendump + let code =<< trim [CODE] let lines = ["one one one one one", "two |hidden| here", "three |hidden| three"] call setline(1, lines) @@ -111,6 +111,7 @@ endfunc func Test_conceal_with_cursorline() CheckScreendump + " Opens a help window, where 'conceal' is set, switches to the other window " where 'cursorline' needs to be updated when the cursor moves. let code =<< trim [CODE] @@ -139,6 +140,7 @@ endfunc func Test_conceal_resize_term() CheckScreendump + let code =<< trim [CODE] call setline(1, '`one` `two` `three` `four` `five`, the backticks should be concealed') setl cocu=n cole=3 |