diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-01-21 11:34:06 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-01-21 18:42:45 +0100 |
commit | fb855feb525c25bd0c3523c2e518228886535f2f (patch) | |
tree | af941cd2b04c0343b72a0497885b3c433b458d09 /src | |
parent | 154822933ee29f7b27157ff6e5138d8126cfc27f (diff) | |
download | rneovim-fb855feb525c25bd0c3523c2e518228886535f2f.tar.gz rneovim-fb855feb525c25bd0c3523c2e518228886535f2f.tar.bz2 rneovim-fb855feb525c25bd0c3523c2e518228886535f2f.zip |
vim-patch:8.0.0662: stray FIXME for fixed problem
Problem: Stray FIXME for fixed problem.
Solution: Remove the comment. (Dominique Pelle)
https://github.com/vim/vim/commit/4670490673ed98502a09b74fbabe785b47e3d289
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_syntax.vim | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/testdir/test_syntax.vim b/src/nvim/testdir/test_syntax.vim index 21af5d1972..366a6ee1e2 100644 --- a/src/nvim/testdir/test_syntax.vim +++ b/src/nvim/testdir/test_syntax.vim @@ -360,12 +360,6 @@ func Test_conceal() set conceallevel=1 call assert_equal('1X 6 ', ScreenLines(2, 7)[0]) - " FIXME: with conceallevel=1, I would expect that the portion "45" of - " the line to be replaced with a space since ":help 'conceallevel' - " states that if listchars is not set, then the default replacement - " should be a space. But synconcealed() gives an empty string in - " the 2nd value of the returned list. Bug? - " So for now, the following line is commented out: call assert_equal([[0, ''], [1, 'X'], [1, 'X'], [1, ' '], [1, ' '], [0, '']], map(range(1, 6), 'synconcealed(2, v:val)[0:1]')) set conceallevel=1 |