mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-16 20:34:39 +02:00
fix(flash): possible nil for telescope integration
This commit is contained in:
parent
12b57235a9
commit
abfdab37ce
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ return {
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
opts.defaults = vim.tbl_deep_extend("force", opts.defaults, {
|
opts.defaults = vim.tbl_deep_extend("force", opts.defaults or {}, {
|
||||||
mappings = {
|
mappings = {
|
||||||
n = { s = flash },
|
n = { s = flash },
|
||||||
i = { ["<c-s>"] = flash },
|
i = { ["<c-s>"] = flash },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue