File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -422,10 +422,10 @@ local on_attach = function(_, bufnr)
422
422
nmap (' <leader>rn' , vim .lsp .buf .rename , ' [R]e[n]ame' )
423
423
nmap (' <leader>ca' , vim .lsp .buf .code_action , ' [C]ode [A]ction' )
424
424
425
- nmap (' gd' , vim . lsp . buf . definition , ' [G]oto [D]efinition' )
425
+ nmap (' gd' , require ( ' telescope.builtin ' ). lsp_definitions , ' [G]oto [D]efinition' )
426
426
nmap (' gr' , require (' telescope.builtin' ).lsp_references , ' [G]oto [R]eferences' )
427
427
nmap (' gI' , require (' telescope.builtin' ).lsp_implementations , ' [G]oto [I]mplementation' )
428
- nmap (' <leader>D' , vim . lsp . buf . type_definition , ' Type [D]efinition' )
428
+ nmap (' <leader>D' , require ( ' telescope.builtin ' ). lsp_type_definitions , ' Type [D]efinition' )
429
429
nmap (' <leader>ds' , require (' telescope.builtin' ).lsp_document_symbols , ' [D]ocument [S]ymbols' )
430
430
nmap (' <leader>ws' , require (' telescope.builtin' ).lsp_dynamic_workspace_symbols , ' [W]orkspace [S]ymbols' )
431
431
You can’t perform that action at this time.
0 commit comments