Alexandre Borela

Results 104 comments of Alexandre Borela

@Whoaa512 The issue for arrow functions is that you need to check the pattern for the arrow functions first https://github.com/borela/naomi/blob/master/syntaxes/fjsx15/arrow-function.sublime-syntax#L143 it is not possible to render it as group and...

@Thom1729 If that gets implemented I would definitely be happy too.

This was by design, but I do think a fallback is better than breaking the syntax because I don't mark other invalid code. Will add the fallback in the next...

I am thinking about removing it because SublimeLinter is more capable in the detection of these errors and it would make the syntax simpler. Right now, it's not possible to...

I am working on the [building system](https://github.com/borela/naomi/pull/170) that will solve this issue and many others, for now no fix is available, sorry :/.

This is a limitation in sublime's regex engine where it can't match against multi line, this is why it works when you put everything on the same line :/ https://github.com/borela/naomi/issues/25

The error usually happens with the builtin PHP, Markdown and LateX syntaxes, it started when they did a major upgrade in the latest version of sublime, they included `source.js` into...

> I think you have to do a little clean in your code and lighten up a little [That's already in progress and it's a big change](https://github.com/borela/naomi/pull/170). The problem was...

I believe that's fixable, sublime has two settings https://forum.sublimetext.com/t/difference-between-settings-showinsymbollist-and-showinindexedsymbollist/20254 I'll do some tests.

The detection by syntax name was [deprecated](https://github.com/SublimeLinter/SublimeLinter/blob/master/SublimeLinter.sublime-settings#L210), ideally we would update the HTML linter to detect it by the scope `text.html` like the [yaml linter does here](https://github.com/thomasmeeus/SublimeLinter-contrib-yamllint/blob/master/linter.py#L20). ~But there might...