Jan Pilzer

Results 117 comments of Jan Pilzer

I like to read the release notes of extension too and would love to be able to do so without having to search the GitHub page of the extension. The...

If you switch to ES6 classes the outline should be organized as expected. 😉 For ES5 syntax however this would mean a big change, so no guarantee this will be...

Honestly this doesn't really have the highest priority right now, as the language isn't even supported by Brackets. Feel free to submit a PR, I will check it and merge...

@presidentnickson I can look into adding adding support for TypeScript. Since my previous comment is quite old the circumstances might have changed. My preferred approach would be to generate an...

This is very hard to diagnose or solve without the actual input. Does this happen for all JS files or just one? This extension is using Espree to parse the...

According to [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/with) ... >using `with` is not recommended, and is forbidden in ECMAScript 5 strict mode. In order to support parsing `with`, the parser's ES-version target has to be...

Thanks for reporting. I have looking into it for a bit and it looks like the Colors++ Options panel is blocking the Outline List on the right. You can fix...

Yes, that is the reason. Unfortunately based on the way functions are detected, this problem is not that easy to solve.

Please add the information requested in the issue template: Brackets Version, Extension Version, the used code, the current output, and the desired output.

It seems like I missed a parser flag. When using `import` and `export` statements, `sourceType` has to be set to `"module"` in Espree. I have to check if setting that...