Andres Kalle

Results 12 comments of Andres Kalle

@gabrielkunkel PR #130 has a fix for that

It is possible the original problem is still unresolved, #130 only fixed the issue later mentioned by @gabrielkunkel

> No progress yet. We use [php-font-lib](https://github.com/phenx/php-font-lib) for font handling and so support would have to be built into that library. @bsweeney The README on that project (even the first...

I've never noticed a specific pattern that makes it happen. One thought I have is that perhaps in addition to spawning child processes, it's also killing them and sometimes accidentally...

@Chris2011 is your problem also related to Ruby on Rails? I just tested this on a Java Application project by manually adding a new file outside NetBeans after the OFF...

I managed to look into this a bit. `parseExpr` has two steps: `parseInnerExpr` and `parseOuterExpr`. In the `{{ x is defined ? 1 : 0 }}` example, the inner expression...

PS. A workaround is to change the template like this: `{{ (x is defined) ? 1 : 0 }}`.

After deeper investigation, I found that the root cause was that the Windows equivalents for the `ino` and `ctime` stat fields (which are written into the index file) are ambiguous....

I'll look into that. In the meantime, here's a temporary workaround in case anyone needs it: ```javascript const os = require('os') const isWindows = os.platform() === 'win32' git.walk({ fs: {...

Unfortunately, I have migrated from NetBeans to Atom since taking over this project and my interest in developing this further has dropped. Atom has a feature like OFF as one...