mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
69e5427be1
Problem: When removing from 'path' and then adding, a comma may go missing.
(Malcolm Rowe)
Solution: Fix the check for P_ONECOMMA. (closes #471)
174674743d
28 lines
551 B
Lua
28 lines
551 B
Lua
local helpers = require('test.functional.helpers')
|
|
local command, clear = helpers.command, helpers.clear
|
|
local source, expect = helpers.source, helpers.expect
|
|
|
|
describe('options', function()
|
|
setup(clear)
|
|
|
|
it('should not throw any exception', function()
|
|
command('options')
|
|
end)
|
|
end)
|
|
|
|
describe('set', function()
|
|
setup(clear)
|
|
|
|
it("should keep two comma when 'path' is changed", function()
|
|
source([[
|
|
set path=foo,,bar
|
|
set path-=bar
|
|
set path+=bar
|
|
$put =&path]])
|
|
|
|
expect([[
|
|
|
|
foo,,bar]])
|
|
end)
|
|
end)
|