diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-14 22:21:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 22:21:57 +0200 |
commit | 682247b52e76180e4c49b794c6cc2548bfd32d4c (patch) | |
tree | f43a922363a24c642a07f891c0648ac60b0a744f /test | |
parent | 19a2e59f7e80f87704ce135fff53e0efdec30432 (diff) | |
parent | f0cc3a9480ffc30624a70ebd1e30146bc03a7029 (diff) | |
download | rneovim-682247b52e76180e4c49b794c6cc2548bfd32d4c.tar.gz rneovim-682247b52e76180e4c49b794c6cc2548bfd32d4c.tar.bz2 rneovim-682247b52e76180e4c49b794c6cc2548bfd32d4c.zip |
Merge pull request #15078 from bfredl/p_vim_vi
refactor(options): remove obsolete distinction of "vi" vs "vim" defaults
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/legacy/listchars_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/legacy/mksession_spec.lua | 2 |
2 files changed, 2 insertions, 2 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) diff --git a/test/functional/legacy/mksession_spec.lua b/test/functional/legacy/mksession_spec.lua index a2af891107..bca9cd833c 100644 --- a/test/functional/legacy/mksession_spec.lua +++ b/test/functional/legacy/mksession_spec.lua @@ -12,7 +12,7 @@ describe('mksession', function() end) it('supports "skiprtp" value', function() - command('set sessionoptions&vi') + command('set sessionoptions+=options') command('set rtp+=$HOME') command('set pp+=$HOME') command('mksession! Xtest_mks.out') |