0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 8.0.0662: stray FIXME for fixed problem

Problem:    Stray FIXME for fixed problem.
Solution:   Remove the comment. (Dominique Pelle)
This commit is contained in:
Bram Moolenaar
2017-06-22 23:03:12 +02:00
parent a529ce068b
commit 4670490673
2 changed files with 2 additions and 6 deletions

View File

@@ -478,12 +478,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