Bartosz
Bartosz
I've had same issue, installing globally latest ungit helped `npm i -g ungit@latest` I'm not sure why that worked but maybe it will help in finding source of problem
I wasn't aware of BlackCoffe, it looks really cool, if I knew about it earlier I would be very interested. Now I'm pursuing something rather different (building programs using a...
Like you said those are not 'higenic' macros, but problems with variables names can easily be bypass by generating unique names ```livescript swap! = (a,b) -> probably-unique = -> performance.now!to-string!replace...
Question to people wanting es6 module support: Would you be interested in implementation in form of opt-in extension to livescript compiler? I'm already using some plugins with my [loader](https://www.npmjs.com/package/livescript-plugin-loader) and...
Links for my proof of concept are at the end - you need to have really strong stomach because it is example of truly unholy coding. What it can already...
Also for me main reason for exposing the lexer's lists of keywords was to help writing code completions like [this](https://atom.io/packages/ide-livescript)  Right now I have to copy-paste keyword form `lexer.ls`....
That would be superb, but it is a **lot** more work. What I propose is a little upgrade of what livescript already can do. It doesn't look like a big...
Ok. I'll try to look into that logging interface, but reporting multiple errors will bring a lot of changes. I would like to know what kind of modification would be...
It came out rather long, it has four parts first is about data and it base on official LSP [specification](https://github.com/Microsoft/language-server-protocol/blob/gh-pages/specification.md). Second is about how actual processing would be implemented and...
After cutting things down and making it more compatible with LiveScript, here next iteration: ```ts namespace LiveScript { function logger(diag: Diagnostic): void; } ``` ```ts interface Diagnostic { location: Location;...