This commit is contained in:
2026-05-20 01:31:00 +02:00
parent 761297c7e8
commit a53ff4ebca
6 changed files with 54 additions and 57 deletions
+6 -6
View File
@@ -1,14 +1,14 @@
if not vim.F then
vim.F = {}
vim.F = {}
end
if not vim.F.if_nil and not vim.nonnil then
vim.F.if_nil = function(value, default)
if value == nil then
return default
vim.F.if_nil = function(value, default)
if value == nil then
return default
end
return value
end
return value
end
end
require("telescope").setup {}