Peter Flynn
Peter Flynn
In addition to `.jshintrc`, there's a `.jshintignore` file that can be used to exclude files or folders. It would be nice if this extension also ignored those files and didn't...
Starting in Sprint 36, I believe you can remove your extension's explicit calls to `ProjectManager.refreshFileTree()`. Brackets will automatically detect filesystem changes (including changes made by a different process), and it...
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...
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...
This extension uses APIs which are deprecated as of Brackets Sprint 34 (the next release): - `NativeFileSystem.FileEntry` - `NativeFileSystem.resolveNativeFileSystemPath()` - `DirectoryEntry.createReader()`
1. Install Theseus 2. Open any file (I'm using the 'FindReplace.js' in the Brackets src as my test) 3. Invoke Find (Ctrl+F) or Quick Open (Ctrl+Shift+O) Result: The whole editor...
As far as I can tell, this extension isn't currently listed either of these places: - Official extension registry - https://brackets-registry.aboutweb.com/ - Legacy wiki extension list - https://github.com/adobe/brackets/wiki/Brackets-Extensions Brackets gets...