Fix typo in lua code

This commit is contained in:
Pedro Alves 2021-02-01 14:54:25 +00:00
parent ac189ed7ce
commit 9c13cb407b

View file

@ -236,7 +236,7 @@ in
for i,opt in ipairs(v) do
val = val .. tostring(opt)
if i ~= #v then
val .. ","
val = val .. ","
end
end
vim.cmd("set " .. k .. "=" .. val)