intellij-emberjs
intellij-emberjs copied to clipboard
Ember.js support for JetBrains IDEs (IntelliJ, WebStorm, ...)
Right now the HTML parser in IntelliJ will throw up on HTML elements starting with `@`, but the following will soon be possible in Ember.js: ```hbs Foo ```
It doesn't appear that this plugin respects _utils_ in the same way that it respects other elements of EmberJS. My `app/utils/` classes are hard to find using `CMD-O` _class search_....
Given that I have a translations file with the following content: ```js // project-root/app/locales/en/translations.js const Translations = { 'some-key': 'some-value' } export default Translations; ``` and the following hbs template:...
> java.io.IOException: Broken pipe > at java.io.FileOutputStream.writeBytes(Native Method) > at java.io.FileOutputStream.write(FileOutputStream.java:326) > at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:82) > at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:140) > at sun.nio.cs.StreamEncoder.implFlush(StreamEncoder.java:297) > at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:141) > at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:229) > at com.emberjs.cli.YesThread.run(YesThread.kt:13)
Seems that if you have more than one ember project open, the translation completion on `{{t}}` helper shows entries from all open projects, not just a current one. Using `ember-intl`.
Ember-cli detects addons based on the keywords field in package.json ([source](https://github.com/ember-cli/ember-cli/blob/a4734540b3889c7f6ef304fe6a81dd356f77bfe4/lib/models/addon-discovery.js#L198)): ``` "keywords": [ "ember-addon" ], ``` We currently look for a `.ember-cli` file in the directory but not all...
Hi I have error into PHPStorm 2017.3 !!! Worker exited due to exception: it must not be null java.lang.IllegalStateException: it must not be null at com.emberjs.index.EmberNameIndex$Companion$getFilteredKeys$filter$1.value(EmberNameIndex.kt:49) at com.emberjs.index.EmberNameIndex$Companion$getFilteredKeys$filter$1.value(EmberNameIndex.kt:26) at com.intellij.util.FilteringProcessor.process(FilteringProcessor.java:34)...
Intellij supports creating and running a test configuration by clicking on a test line marker.  This probably requires a: - runLineMarkerContributor at each test/describe - runConfigurationProducer to handle creating...
Cmd-clicking the `foo/bar` in `{{partial "foo/bar"}}` should jump to the corresponding template