mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-28 05:54:03 +02:00
respect override table
This commit is contained in:
parent
72f5a54ec2
commit
0e05f05e9d
2 changed files with 18 additions and 0 deletions
|
@ -42,6 +42,15 @@ local function r_inspect_settings(structure, limit, separator)
|
|||
return limit - 1
|
||||
end
|
||||
|
||||
function utils.has_value(tab, val)
|
||||
for _, value in ipairs(tab) do
|
||||
if value == val then
|
||||
return true
|
||||
end
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
function utils.generate_settings()
|
||||
-- Opens a file in append mode
|
||||
local file = io.open("lv-settings.lua", "w")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue