diff options
Diffstat (limited to 'test/functional/options/defaults_spec.lua')
-rw-r--r-- | test/functional/options/defaults_spec.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/functional/options/defaults_spec.lua b/test/functional/options/defaults_spec.lua index 787ec366b8..f6f3f02f45 100644 --- a/test/functional/options/defaults_spec.lua +++ b/test/functional/options/defaults_spec.lua @@ -118,6 +118,13 @@ describe('startup defaults', function() clear('-u', 'NORC', '-c', 'syntax off') eq(0, eval('exists("g:syntax_on")')) end) + + it('":if 0|syntax on|endif" does not affect default #8728', function() + clear('-u', 'NORC', '--cmd', ':if 0|syntax on|endif') + eq(1, eval('exists("g:syntax_on")')) + clear('-u', 'NORC', '--cmd', ':if 0|syntax off|endif') + eq(1, eval('exists("g:syntax_on")')) + end) end) describe("'fillchars'", function() |