Skip to content

Commit fdebf3b

Browse files
committed
bugfix
1 parent b3bcab7 commit fdebf3b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lua/easycomplete/cmdline.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ function this.pum_redraw()
3030
if vim.g.easycomplete_cmdline_pattern == '/' then
3131
redraw_queued = true
3232
local ch = vim.fn.nr2char(0x200F)
33-
local termcode = vim.api.nvim_replace_termcodes(" <bs>", true, true, true)
33+
-- " <bs>"
34+
-- "<c-]>"
35+
-- <c-t>
36+
local termcode = vim.api.nvim_replace_termcodes("<c-]>", true, true, true)
3437
vim.schedule(function()
3538
if vim.o.incsearch then
3639
vim.api.nvim_feedkeys(termcode, 'ni', true)

0 commit comments

Comments
 (0)