Describe the feature
This was recently added in Metals as a way to search through dependency jars for values in configurations values. This is useful for example if you want to see some default Akka timeout values or something set in a dep.
Potential ways to implement?
You can see the way I implemented this here in nvim-metals: https://github.com/scalameta/nvim-metals/pull/247/files
The general flow would be:
- User triggers this
- User gets prompt for file mask
- User gets prompt for search
- Search goes in and returns results
- Display results just like you'd do for references
Additional context
This was added in scalameta/metals#3093