nvim/key: Buffer.Lsp.N.Leader.CodeAction

This commit is contained in:
Paul Stemmet 2022-12-09 20:15:48 +00:00
parent 9a41cb4bb4
commit 70eb4b400a
Signed by: Paul Stemmet
GPG Key ID: EDEA539F594E7E75
1 changed files with 1 additions and 0 deletions

View File

@ -134,6 +134,7 @@ M.Buffer.Lsp.N {
RenameSymbol = B { 'Rename <cword> symbol' , key = 'rn' , action = vim.lsp.buf.rename , } ,
FormatDocument = B { 'Format current document' , key = 'F' , action = vim.lsp.buf.formatting , } ,
ShowSignature = B { 'Display function signature help of <cword> symbol' , key = 'K' , action = vim.lsp.buf.signature_help , } ,
CodeAction = B { 'Request code actions for <cword>' , key = '.' , action = vim.lsp.buf.code_action , } ,
},