mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-23 01:08:59 +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
|
||||
opts.defaults = vim.tbl_deep_extend("force", opts.defaults, {
|
||||
opts.defaults = vim.tbl_deep_extend("force", opts.defaults or {}, {
|
||||
mappings = {
|
||||
n = { s = flash },
|
||||
i = { ["<c-s>"] = flash },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue