Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/nvim-treesitter-textobjects/repeatable_move.lua
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ M.repeat_last_move = function(opts_extend)
if not M.last_move then
return
end
local opts = vim.tbl_deep_extend('force', M.last_move.opts, opts_extend or {})
local opts = vim.tbl_deep_extend('force', M.last_move.opts or {}, opts_extend or {})
if vim.list_contains({ 'f', 'F', 't', 'T' }, M.last_move.func) then
repeat_last_move_fFtT({ forward = opts.forward })
else
Expand Down
Loading