Skip to content

Commit

Permalink
fix(flash): possible nil for telescope integration
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jun 24, 2023
1 parent 12b5723 commit abfdab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazyvim/plugins/extras/editor/flash.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit abfdab3

Please sign in to comment.