From 7bfe4194d08e0c32e682a9a98d5cd802819e3034 Mon Sep 17 00:00:00 2001 From: yehuohan Date: Wed, 27 Dec 2023 11:46:31 +0800 Subject: [PATCH] Use nx mode to avoid rempa keys (#1368) --- lua/lspsaga/util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lspsaga/util.lua b/lua/lspsaga/util.lua index 5ebae5c8e..fabe0784a 100644 --- a/lua/lspsaga/util.lua +++ b/lua/lspsaga/util.lua @@ -74,7 +74,7 @@ end function M.feedkeys(key) local k = api.nvim_replace_termcodes(key, true, false, true) - api.nvim_feedkeys(k, 'x', false) + api.nvim_feedkeys(k, 'nx', false) end function M.scroll_in_float(bufnr, winid)