diff options
author | E. Aakash <09e.aakash@gmail.com> | 2023-08-20 14:43:34 +0530 |
---|---|---|
committer | E. Aakash <09e.aakash@gmail.com> | 2023-08-20 14:43:34 +0530 |
commit | f00ff6f6ab6a94e3d49b2e8efa94eed855bc6623 (patch) | |
tree | f3ca6211ef3113a5572a30631d3274b22c56f43f /init.lua | |
parent | 01a1ebed38c5ef28cfe1409f8589bce60b7b727b (diff) |
Use telescope for goto implementation
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -403,7 +403,7 @@ local on_attach = function(_, bufnr) nmap('gd', vim.lsp.buf.definition, '[G]oto [D]efinition') nmap('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences') - nmap('gI', vim.lsp.buf.implementation, '[G]oto [I]mplementation') + nmap('gI', require('telescope.builtin').lsp_implementaitons, '[G]oto [I]mplementation') nmap('<leader>D', vim.lsp.buf.type_definition, 'Type [D]efinition') nmap('<leader>ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols') nmap('<leader>ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols') |