We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b2ac1e commit 02db89cCopy full SHA for 02db89c
init.lua
@@ -572,7 +572,11 @@ require('lazy').setup({
572
map('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition')
573
574
-- Find references for the word under your cursor.
575
- map('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences')
+ map('gr', function()
576
+ require('telescope.builtin').lsp_references {
577
+ fname_width = 0.5,
578
+ }
579
+ end, '[G]oto [R]eferences')
580
581
-- Jump to the implementation of the word under your cursor.
582
-- Useful when your language has ways of declaring types without an actual implementation.
0 commit comments