We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7a6037 commit a946e19Copy full SHA for a946e19
lua/keymap/completion.lua
@@ -51,7 +51,11 @@ function M.lsp(buf)
51
["n|gT"] = map_callback(function()
52
vim.lsp.buf.type_definition()
53
end):with_desc("lsp: Goto type_definition"),
54
- ["n|gr"] = map_cr("Lspsaga rename"):with_silent():with_buffer(buf):with_desc("lsp: Rename in file range"),
+ ["n|gr"] = map_cr("Lspsaga rename")
55
+ :with_silent()
56
+ :with_nowait()
57
+ :with_buffer(buf)
58
+ :with_desc("lsp: Rename in file range"),
59
["n|gR"] = map_cr("Lspsaga rename ++project")
60
:with_silent()
61
:with_buffer(buf)
0 commit comments