diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-13 19:12:08 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-07-14 21:54:19 +0200 |
commit | f0cc3a9480ffc30624a70ebd1e30146bc03a7029 (patch) | |
tree | c9c3af0402dc215f131261697952b08aaeb6b9f9 /test/functional/legacy/mksession_spec.lua | |
parent | fc869da6dc94970e9aa26d51bd605d383f4a4c4e (diff) | |
download | rneovim-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/mksession_spec.lua')
-rw-r--r-- | test/functional/legacy/mksession_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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') |