diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-05-28 06:39:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 06:39:07 +0800 |
commit | 7b16c1fa8451880c72769f6d3c311f24c74f4fc7 (patch) | |
tree | 169b7b20c9e9903ba56ff050d57ddb4b804dc9a9 /test/functional/lua/runtime_spec.lua | |
parent | 6e8a728e3dad747d0c46dc47a530b76e8997bc08 (diff) | |
download | rneovim-7b16c1fa8451880c72769f6d3c311f24c74f4fc7.tar.gz rneovim-7b16c1fa8451880c72769f6d3c311f24c74f4fc7.tar.bz2 rneovim-7b16c1fa8451880c72769f6d3c311f24c74f4fc7.zip |
fix(runtime): source c ftplugin properly for cpp on Windows (#29053)
On Windows, '{' is currently not treated as a wildcard char, so another
wildcard char is needed for the pattern to be treated as a wildcard.
It may be worth trying to make '{' always a wildcard char in the future,
but that'll be a bit harder as it'll be necessary to make sure '{' is
escaped at various places.
Diffstat (limited to 'test/functional/lua/runtime_spec.lua')
-rw-r--r-- | test/functional/lua/runtime_spec.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/functional/lua/runtime_spec.lua b/test/functional/lua/runtime_spec.lua index 4adce42c3e..c6b0577ebe 100644 --- a/test/functional/lua/runtime_spec.lua +++ b/test/functional/lua/runtime_spec.lua @@ -401,4 +401,12 @@ describe('runtime:', function() eq('ABab', eval('g:seq')) end) end) + + it('cpp ftplugin loads c ftplugin #29053', function() + eq('', eval('&commentstring')) + eq('', eval('&omnifunc')) + exec('edit file.cpp') + eq('/*%s*/', eval('&commentstring')) + eq('ccomplete#Complete', eval('&omnifunc')) + end) end) |