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 2a31195 commit 5a329f2Copy full SHA for 5a329f2
test/test_vim.py
@@ -90,9 +90,9 @@ def test_vars(vim):
90
91
92
def test_options(vim):
93
- assert vim.options['listchars'] == 'tab:> ,trail:-,nbsp:+'
94
- vim.options['listchars'] = 'tab:xy'
95
- assert vim.options['listchars'] == 'tab:xy'
+ assert vim.windows[0].options['listchars'] == 'tab:> ,trail:-,nbsp:+'
+ vim.windows[0].options['listchars'] = 'tab:xy'
+ assert vim.windows[0].options['listchars'] == 'tab:xy'
96
97
98
def test_buffers(vim):
0 commit comments