Closed blueorange589 closed 7 years ago
Which platform (Windows, macOS, Linux) and which version of Brackets are you seeing this on? I'm not seeing this on my machines so would like to look in to it.
Would you mind creating a pull request with the changes?
I am on Ubuntu 14.04 with Brackets 1.9.0-17312 I will create a pull request.
Now extension works, but some features throwing errors like ones below TypeError: Object [object Array] has no method 'findIndex' Files.js 230 Uncaught TypeError: Cannot read property 'length' of undefined Files.js 65 Uncaught TypeError: Object [object Array] has no method 'find' Files.js 182 Uncaught TypeError: Object [object Array] has no method 'find' Tags.js 71
Both Brackets and brackets-todo are fresh install, with only modifications given in first post
I've merged your pull request and will release the new version as soon as I've investigated the find/findIndex issue.
Thank you for your help!
Thanks, I will be looking for the new version. Very nice extension, btw.
extension was not working due to error 'use of future reserved word...' on fileUtils.js 36 and 54 simply nothing displayed in extension window
I changed lines as below line 36
var len = settings.search.excludeFolders.length; for (i=0; i < len; i++) {
line54var lgth = settings.search.excludeFiles.length for (i = 0; i < lgth; i++) {
now extension works, no problems