"References" command doesn't show file names
Closed this issue · 2 comments
mortymacs commented
Hi,
When I want to see the list of references, it shows all the required information except file name.
Sometimes the references are in a test file while I'm looking for the main logic. In this situation, I really can't find which one is the test and which one is the actual logic.
Do you have any solution for this case?
Cheers,
Mort
gfanto commented
Hi, you can set the variable g:fzf_lsp_pretty
to false.
You can try it with
let g:fzf_lsp_pretty = v:false
it should fix your problem
mortymacs commented
Thanks!