brackets-regex-editor icon indicating copy to clipboard operation
brackets-regex-editor copied to clipboard

Brackets inline editor extension for regular expressions, with full syntax highlighting & testing

Results 10 brackets-regex-editor issues
Sort by recently updated
recently updated
newest added

Greetings from the [Brackets.io](https://brackets.io) & [phcode.dev](https://phcode.dev) community. We have [simplified extension development and publish workflows](https://github.com/phcode-dev/phoenix/wiki/How-To-Write-Extensions-And-Themes) for you. ## This Pull Request Please merge in this pull request to be able...

In this example `/(focus|open=\d*)/ig;` it seems that the "g" option is not shown (used)?

@peterflynn I am not sure if I chose colors that suit you, but I did make it so that the matches and matched groups show up ok on a dark...

Today you have to past a string into the test string. Would be wonderful if it was possible to enter a variable name (which exists in current source javascript file)

enhancement

Guess you just missed this file https://github.com/adobe/brackets/wiki/Brackets-CodeMirror-v4-Migration-Guide > CodeMirror is no longer global. In Brackets, we used to provide CodeMirror as a global. CodeMirror now supports require(), so we now...

1. Start an editor with `cubic-bezier\(\s*(\S+)\s*,\s*(\S+)\s*,\s*(\S+)\s*,\s*(\S+)\s*\)` and `cubic-bezier(0, 0, 0, 0)` (both are valid) 2. Look at the highlighting in the second field 3. Hover over $1-$4 4. Look at...

not reproducible

This is an unfortunate limitation of Brackets' lack of scoped commands. Ctrl+A is eaten by the global `EDIT_SELECT_ALL` command, which only does anything when a true Editor has focus.

The HTML5 [pattern attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input) on `` elements is a JS-format regexp except without slash delimiters. (And it must match the entire string, not just a substring). So the regexp inline...

enhancement

I used this inline editor to fine-tune my regex, then saved it back to my document only to receive a JSLint error. Would be nice if linter checking was part...

enhancement

1. Edit the regex `/a(xyz)+b/` with test string `axyzb` 2. Mouse over the "$1 xyz" captured group in the match results Result: nothing is highlighted in the sample string (the...