diff options
| author | Robert Günzler <r@gnzler.io> | 2021-05-31 16:55:12 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-05-31 16:56:02 +0200 |
| commit | 48c6c952a9fccc1cc46f6cb8d817d5a4266a7c10 (patch) | |
| tree | 13496c7968f33f83ff2a48b06b725f8119a0dae4 /.vim/lua/plugins/_lsp.lua | |
| parent | 84c501be462e03b55401ca962e03ff56e1bb1ae5 (diff) | |
vim: misc stuff
Diffstat (limited to '.vim/lua/plugins/_lsp.lua')
| -rw-r--r-- | .vim/lua/plugins/_lsp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/lua/plugins/_lsp.lua b/.vim/lua/plugins/_lsp.lua index e8ca981..bf1cc6d 100644 --- a/.vim/lua/plugins/_lsp.lua +++ b/.vim/lua/plugins/_lsp.lua @@ -22,7 +22,7 @@ local my_attach = function(client) nnoremap { '<leader>f', function() vim.lsp.buf.formatting() end } -- nnoremap { 'g0', function() vim.lsp.buf.document_symbol() end } - -- nnoremap { 'gr', function() vim.lsp.buf.references() end } + nnoremap { 'gR', function() vim.lsp.buf.references() end } nnoremap { 'gW', function() vim.lsp.buf.workspace_symbol() end } nnoremap { 'gD', function() vim.lsp.buf.declaration() end } nnoremap { 'gT', function() vim.lsp.buf.type_definition() end } |