@@ -444,16 +444,13 @@ opts = nil
444444
445445``` lua
446446opts = function ()
447- if LazyVim .pick .want ()~= " fzf" then
448- return
449- end
450447local Keys = require (" lazyvim.plugins.lsp.keymaps" ).get ()
451448-- stylua: ignore
452449vim .list_extend (Keys , {
453- {" gd" ," <cmd>FzfLua lsp_definitionsjump_to_single_result =true ignore_current_line=true<cr>" ,desc = " Goto Definition" ,has = " definition" },
454- {" gr" ," <cmd>FzfLua lsp_referencesjump_to_single_result =true ignore_current_line=true<cr>" ,desc = " References" ,nowait = true },
455- {" gI" ," <cmd>FzfLua lsp_implementationsjump_to_single_result =true ignore_current_line=true<cr>" ,desc = " Goto Implementation" },
456- {" gy" ," <cmd>FzfLua lsp_typedefsjump_to_single_result =true ignore_current_line=true<cr>" ,desc = " Goto T[y]pe Definition" },
450+ {" gd" ," <cmd>FzfLua lsp_definitionsjump1 =true ignore_current_line=true<cr>" ,desc = " Goto Definition" ,has = " definition" },
451+ {" gr" ," <cmd>FzfLua lsp_referencesjump1 =true ignore_current_line=true<cr>" ,desc = " References" ,nowait = true },
452+ {" gI" ," <cmd>FzfLua lsp_implementationsjump1 =true ignore_current_line=true<cr>" ,desc = " Goto Implementation" },
453+ {" gy" ," <cmd>FzfLua lsp_typedefsjump1 =true ignore_current_line=true<cr>" ,desc = " Goto T[y]pe Definition" },
457454 })
458455end
459456```
@@ -467,16 +464,13 @@ end
467464{
468465" neovim/nvim-lspconfig" ,
469466opts = function ()
470- if LazyVim .pick .want ()~= " fzf" then
471- return
472- end
473467local Keys = require (" lazyvim.plugins.lsp.keymaps" ).get ()
474468-- stylua: ignore
475469vim .list_extend (Keys , {
476- {" gd" ," <cmd>FzfLua lsp_definitionsjump_to_single_result =true ignore_current_line=true<cr>" ,desc = " Goto Definition" ,has = " definition" },
477- {" gr" ," <cmd>FzfLua lsp_referencesjump_to_single_result =true ignore_current_line=true<cr>" ,desc = " References" ,nowait = true },
478- {" gI" ," <cmd>FzfLua lsp_implementationsjump_to_single_result =true ignore_current_line=true<cr>" ,desc = " Goto Implementation" },
479- {" gy" ," <cmd>FzfLua lsp_typedefsjump_to_single_result =true ignore_current_line=true<cr>" ,desc = " Goto T[y]pe Definition" },
470+ {" gd" ," <cmd>FzfLua lsp_definitionsjump1 =true ignore_current_line=true<cr>" ,desc = " Goto Definition" ,has = " definition" },
471+ {" gr" ," <cmd>FzfLua lsp_referencesjump1 =true ignore_current_line=true<cr>" ,desc = " References" ,nowait = true },
472+ {" gI" ," <cmd>FzfLua lsp_implementationsjump1 =true ignore_current_line=true<cr>" ,desc = " Goto Implementation" },
473+ {" gy" ," <cmd>FzfLua lsp_typedefsjump1 =true ignore_current_line=true<cr>" ,desc = " Goto T[y]pe Definition" },
480474 })
481475end ,
482476}