Alexandre Borela
Alexandre Borela
This is [being fixed](https://github.com/borela/naomi/issues/181#issuecomment-431522115) and a temporary solution is described [here](https://github.com/borela/naomi/issues/181#issuecomment-430209478).
> > > > Avoid using the builtin PHP, Markdown and Latex syntaxes if possible > > Are we suppose to remove the default PHP syntax temporarily?? No, you just...
@brokeyourbike Rename the *“naomi.php7.sublime-syntax”* to *“naomi.php7.sublime-syntax.disabled”* located at: * **OS X**: `~/Library/Application Support/Sublime Text 3/Packages/Naomi/syntaxes/` * **Linux**: `~/.config/sublime-text-3/Packages/Naomi/syntaxes/` * **Windows**: `%APPDATA%\Sublime Text 3\Packages\Naomi\syntaxes\`
I got the build system for: * Commands; * Indentation preferences; * Keymaps; * Menus; For the syntaxes I've been looking at how to implement it and optimization algorithms, I'll...
@kud You are welcomed :D I am trying to speed up the upgrade to solve the context issues, hopefully will merge it soon.
@kud The alpha version will be ready soon, probably begining of december, as I already did the parsing and construction of the AST. Now I am working on code generation(should...
I use [lookaheads to predict arrow functions](https://github.com/borela/naomi/blob/master/syntaxes/fjsx15/arrow-function.sublime-syntax#L85), if sublime allows multiline match it would correctly detect the arrow function but I know that's something hard for the sublime devs to...
> A regular expression cannot handle this. I have to put the blame for this problem on the ECMAScript designers; in order for Sublime to parse this correctly, it would...
I'll keep those cases in mind when testing the syntax. As for performance, it is still acceptable, the slowest PC I have access to is a core 2 duo and...
> On the other hand, once the syntax sees the `=>`, it should immediately recover from a wrong guess and correctly highlight the arrow function body as a block. This...