mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
Fix typo in lua code
This commit is contained in:
parent
ac189ed7ce
commit
9c13cb407b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue