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 @@ -425,10 +425,10 @@ local on_attach = function(_, bufnr)
425
425
nmap (' <leader>L' , vim .lsp .buf .format , ' [F]ormat' )
426
426
nmap (' <leader>ca' , vim .lsp .buf .code_action , ' [C]ode [A]ction' )
427
427
428
- nmap (' gd' , vim . lsp . buf . definition , ' [G]oto [D]efinition' )
428
+ nmap (' gd' , require ( ' telescope.builtin ' ). lsp_definitions , ' [G]oto [D]efinition' )
429
429
nmap (' gr' , require (' telescope.builtin' ).lsp_references , ' [G]oto [R]eferences' )
430
430
nmap (' gI' , require (' telescope.builtin' ).lsp_implementations , ' [G]oto [I]mplementation' )
431
- nmap (' <leader>D' , vim . lsp . buf . type_definition , ' Type [D]efinition' )
431
+ nmap (' <leader>D' , require ( ' telescope.builtin ' ). lsp_type_definitions , ' Type [D]efinition' )
432
432
nmap (' <leader>ds' , require (' telescope.builtin' ).lsp_document_symbols , ' [D]ocument [S]ymbols' )
433
433
nmap (' <leader>ws' , require (' telescope.builtin' ).lsp_dynamic_workspace_symbols , ' [W]orkspace [S]ymbols' )
434
434
You can’t perform that action at this time.
0 commit comments