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.
This commit is contained in:
Björn Linse
2021-07-13 19:12:08 +02:00
parent fc869da6dc
commit f0cc3a9480
7 changed files with 98 additions and 439 deletions

View File

@@ -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)

View File

@@ -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')