Skip to content

Commit

Permalink
fix(dotrepeat): should escape K_SPECIAL bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
xiyaowong committed Nov 12, 2023
1 parent 736e7b2 commit 68557f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/lua/vscode-neovim/internal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ do
bs = api.nvim_replace_termcodes(bs, true, true, true)
api.nvim_feedkeys(bs, "n", false)
end
api.nvim_feedkeys(edits, "n", false)
api.nvim_feedkeys(edits, "n", true)

vim.opt.ei = ei
end
Expand Down

0 comments on commit 68557f7

Please sign in to comment.