Christian
Christian
Sadly I didn't have any more time. I think the most sane solution would be to fork the handelbars plugin and extend [their flex grammar](https://github.com/JetBrains/intellij-plugins/blob/master/handlebars/src/com/dmarcotte/handlebars/parsing/handlebars.flex) to support what we need....
Interesting. I've tried to extend the [HbsPatterns](https://github.com/Turbo87/intellij-emberjs/blob/27d45ad1b50f1f1476b9cd50f07abac77e32bca2/src/main/kotlin/com/emberjs/hbs/HbsPatterns.kt#L11) to get proper results but it seemed like i can only use the tokens that the handlebars library finds. Somehow i only got...
Sure I'll look into it.
Yes we execute the `node_modules/.bin/ember` executable [directly](https://github.com/Turbo87/intellij-emberjs/blob/master/src/main/kotlin/com/emberjs/cli/EmberCli.kt#L19). I guess on your system `#!/usr/bin/env node` returns nothing. Maybe it's a good idea to also check if we can access the global...
@viktoria-shirunova can you check if this fixes your issue? I couldn't reproduce it locally but from the stacktrace it seems like the issue was the access to index 0 when...
I've tried to uninstall node. The intellij node picker widget has a graceful fallback for me:  The stacktrace pointed to an issue where the module picker had no modules...
Hi, I started working on this in https://github.com/alphasights/ember-calendar/compare/develop...makepanic:issues/20 It uses the algorithm explained in https://stackoverflow.com/a/11323909/2131168 and looks like this:  It currently requires a change in the occurence component to...
We investigated the addon but ultimately didn't, because we didn't need a full calendar. This PR is mainly from some quick tests to get overlapping events to work. I don't...
Duplicate of https://github.com/teejee2008/polo/issues/27
I guess you're right that it doesn't make sense for all forms. For our case we have a form that takes focus and only validates when changing the value or...