folke / trouble.nvim

🚦 A pretty diagnostics, references, telescope results, quickfix and location list to help you solve all the trouble your code is causing.
Apache License 2.0
5.24k stars 178 forks source link

feature: show paths relative to lsp root #330

Closed fent closed 2 months ago

fent commented 11 months ago

Did you check the docs?

Is your feature request related to a problem? Please describe.

when opening nvim from outside project folders, it would be useful if the paths shown in the Trouble window would be relative to the lsp root. for example, below i opened nvim from just outside of dotfiles/, a git repo

image

Describe the solution you'd like

i would like the path to remove dotfiles/ since it's a git repo and my lsp root is dotfiles/. i can see how others may prefer showing a relative path to the pwd, which is what Trouble current does. so maybe this can be an option?

Describe alternatives you've considered

a path_display option as a function for further customization like telescope.nvim has

path_display = function(_, path)
  local tail = require("telescope.utils").path_tail(path)
  return string.format("%s (%s)", tail, path)
end

Additional context

i work in a large codebase with many projects and subprojects. i often open nvim from any directory

fent commented 1 month ago

Hi, I'm getting an absolute path printed when the pwd of neovim doesn't match the LSP root. Although in my case, the LSP root is inside of the pwd. In such a case, I think it'd be nice to delete the left side of the path that's already included in the pwd.