| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Quickly jump between related source files in your project.
This Visual Studio Code extension finds files related to the currently active editor file using user-configurable matchers and opens the next file in the sorted list (including the current file). It is useful for jumping between header/source pairs, generated artifacts, or other related file sets and is completely configurable.
The extension uses the relatedsources.matchers setting (an array) to discover related files. Each matcher is an object with the following properties:
Example settings (to add to your workspace or user settings):
"relatedsources.matchers": [
{
"sourceRegexp": "^(?<path>.*)\\.[^.]*$",
"targetPath": "${path}.*",
"name": "Same filename"
},
{
"sourceRegexp": "^(?<path>.*)\\.[^.]*$",
"targetPath": "out/*/gen/${path}.*",
"name": "Generated files"
},
{
"sourceRegexp": "^out/*/gen/(?<path>.*)\\.[^.]*$",
"targetPath": "${path}.*",
"name": "Generated files (reverse)"
}
]The example above:
Contributions, suggestions and bug reports are welcome. Open an issue on the repository or submit a pull request.
This project is available under the MIT license.
This extension does not collect any personal data or usage statistics. All file paths and workspace information are processed locally and are not sent to any external servers.
| Back | FazBrowse Home | New Git URL |