0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

patch 8.2.2931: Vim9: line continuation comment uses legacy syntax

Problem:    Vim9: line continuation comment still uses legacy syntax in one
            place.
Solution:   Check for #\ instead of "\ earlier. (closes #8316)
This commit is contained in:
Bram Moolenaar
2021-06-03 21:56:10 +02:00
parent 85eee5b969
commit 5072b47a22
3 changed files with 10 additions and 2 deletions

View File

@@ -3081,6 +3081,9 @@ def Test_vim9_comment()
\ start='foo'
#\ comment
\ end='bar'
syn region Text start='foo'
#\ comment
\ end='bar'
END
CheckScriptSuccess(lines)