1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00

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 for i,opt in ipairs(v) do
val = val .. tostring(opt) val = val .. tostring(opt)
if i ~= #v then if i ~= #v then
val .. "," val = val .. ","
end end
end end
vim.cmd("set " .. k .. "=" .. val) vim.cmd("set " .. k .. "=" .. val)