trouble.nvim icon indicating copy to clipboard operation
trouble.nvim copied to clipboard

feature: show paths relative to lsp root

Open fent opened this issue 1 year ago • 0 comments

Did you check the docs?

  • [X] I have read all the trouble.nvim 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 avatar Aug 26 '23 19:08 fent