aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/listchars_spec.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-07-13 19:12:08 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2021-07-14 21:54:19 +0200
commitf0cc3a9480ffc30624a70ebd1e30146bc03a7029 (patch)
treec9c3af0402dc215f131261697952b08aaeb6b9f9 /test/functional/legacy/listchars_spec.lua
parentfc869da6dc94970e9aa26d51bd605d383f4a4c4e (diff)
downloadrneovim-f0cc3a9480ffc30624a70ebd1e30146bc03a7029.tar.gz
rneovim-f0cc3a9480ffc30624a70ebd1e30146bc03a7029.tar.bz2
rneovim-f0cc3a9480ffc30624a70ebd1e30146bc03a7029.zip
refactor(options): remove obsolete distinction of "vi" vs "vim" defaults
It might come as a schocking surprise, but the defaults we support are the NEOVIM defaults.
Diffstat (limited to 'test/functional/legacy/listchars_spec.lua')
-rw-r--r--test/functional/legacy/listchars_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/legacy/listchars_spec.lua b/test/functional/legacy/listchars_spec.lua
index cffb9fd376..dc6ccd3628 100644
--- a/test/functional/legacy/listchars_spec.lua
+++ b/test/functional/legacy/listchars_spec.lua
@@ -8,7 +8,7 @@ local clear, feed_command, expect = helpers.clear, helpers.feed_command, helpers
describe("'listchars'", function()
before_each(function()
clear()
- feed_command('set listchars&vi')
+ feed_command('set listchars=eol:$')
end)
-- luacheck: ignore 613 (Trailing whitespace in a string)