We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a3e19d commit 010bbb1Copy full SHA for 010bbb1
tests/test_basics.lua
@@ -143,12 +143,12 @@ end
143
T['Options']['do not override manually set options'] = function()
144
-- Shouldn't modify options manually set to non-default value
145
child.g.mapleader = ';'
146
- child.o.signcolumn = 'no'
147
- child.o.pumblend = 50
+ child.cmd('set signcolumn=no')
+ child.cmd('set pumblend=50')
148
149
-- Shouldn't modify option manually set to default value
150
- child.o.number = false
151
- child.o.list = false
+ child.cmd('set nonumber')
+ child.cmd('set nolist')
152
153
load_module({ options = { basic = true, extra_ui = true } })
154
0 commit comments