The regex-breakpoints extension allows developers to set and remove breakpoints in their code based on regex patterns. This can save time when debugging large files with repetitive patterns.
- Set Breakpoints by Regex: Add breakpoints to lines matching a user-defined regex pattern.
- Remove Breakpoints by Regex: Remove breakpoints from lines matching a user-defined regex pattern.
- Interactive Input: Input regex patterns directly from the command palette.
- Open the Command Palette (
Ctrl+Shift+P/Cmd+Shift+P). - Run
Set Breakpoints by Regex. - Enter a regex pattern (e.g.,
console\.log). - Breakpoints will be added to all matching lines.
- To remove breakpoints, run
Remove Breakpoints by Regexand enter a regex pattern.
This extension currently has no configurable settings.
Please report issues on the GitHub repository.
- Initial release with support for setting and removing breakpoints using regex patterns.