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 2fcfb9a commit 5a8713aCopy full SHA for 5a8713a
test/test_vim.py
@@ -78,9 +78,9 @@ def test_vars():
78
79
@with_setup(setup=cleanup)
80
def test_options():
81
- eq(vim.options['compatible'], True)
82
- vim.options['compatible'] = False
83
- eq(vim.options['compatible'], False)
+ eq(vim.options['listchars'], 'eol:$')
+ vim.options['listchars'] = 'tab:xy'
+ eq(vim.options['listchars'], 'tab:xy')
84
85
86
0 commit comments