intellij-emberjs icon indicating copy to clipboard operation
intellij-emberjs copied to clipboard

Ember.js support for JetBrains IDEs (IntelliJ, WebStorm, ...)

Results 68 intellij-emberjs issues
Sort by recently updated
recently updated
newest added
trafficstars

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 ```

enhancement

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_....

bug
beginner-friendly

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...

bug

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)...

bug

Intellij supports creating and running a test configuration by clicking on a test line marker. ![20171121-111137](https://user-images.githubusercontent.com/1205444/33067851-c56c90c6-ceaf-11e7-9638-b2acbe644a35.png) This probably requires a: - runLineMarkerContributor at each test/describe - runConfigurationProducer to handle creating...

enhancement

e.g. `foo { bar } baz` vs `foo {bar} baz`

bug

Cmd-clicking the `foo/bar` in `{{partial "foo/bar"}}` should jump to the corresponding template

enhancement