feat(default): bind vim.lsp.buf.signature_help in select mode (#31223)

This commit is contained in:
Yi Ming
2024-11-16 00:13:41 +08:00
committed by GitHub
parent c33ec2d7ce
commit f1748b78e3
2 changed files with 2 additions and 2 deletions

View File

@@ -179,7 +179,7 @@ do
vim.lsp.buf.document_symbol()
end, { desc = 'vim.lsp.buf.document_symbol()' })
vim.keymap.set('i', '<C-S>', function()
vim.keymap.set({ 'i', 's' }, '<C-S>', function()
vim.lsp.buf.signature_help()
end, { desc = 'vim.lsp.buf.signature_help()' })
end