Skip to content

Commit

Permalink
fix(builtin.commands): don't remap for feedkeys (#3087)
Browse files Browse the repository at this point in the history
(cherry picked from commit 486a648)
  • Loading branch information
parmort authored and Conni2461 committed May 20, 2024
1 parent c4e3e8f commit 679dacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/telescope/builtin/__internal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ internal.commands = function(opts)
cmd = cmd .. cr
end
vim.cmd [[stopinsert]]
vim.api.nvim_feedkeys(cmd, "t", false)
vim.api.nvim_feedkeys(cmd, "nt", false)
end)

return true
Expand Down

0 comments on commit 679dacb

Please sign in to comment.