Christian

Results 46 comments of Christian

Should the implicit port only work with trusted hosts in string format? I'm not sure if we should modify a given regex.

I think we're affected by this issue. Is there any chance on fixing this bug? If not, could you maybe point in a direction where the scroll correction is happening...

If your consuming app adds a dev/dependency to your addon it should work out of the box.

I think it caused by the change from https://github.com/Turbo87/intellij-emberjs/pull/220 Right now it replaces `-` with spaces https://github.com/Turbo87/intellij-emberjs/blob/master/src/main/kotlin/com/emberjs/navigation/EmberGotoClassContributor.kt#L22 I'll see if one can maybe provide intellij with various separators instead of...

I got a prototype of this working using emberobserver as datasource. There are some open questions I have: * can we copy the ng approach of having a [list of...

It could be caused by new ember-intl configs not using [`baseLocale` anymore](https://github.com/ember-intl/ember-intl/blob/master/docs/migration-2.0-to-3.0.md#migrating-from-20-to-30). The ember-intl code searches for its value https://github.com/Turbo87/intellij-emberjs/blob/master/src/main/kotlin/com/emberjs/translations/EmberIntlBaseLocaleFinder.kt#L12 With falling back through baseLocale, `en-us` and `en` it won't...

I got this nearly finished but have to figure out why intellij isn't displaying the supression options :< ![20200202-200220](https://user-images.githubusercontent.com/1205444/73643696-3fdfbe80-4674-11ea-8f8f-792d7aa58a03.png)

@discopatrick `` is a different module in your project right? Does this only affect the ember serve run configuration?

I was asking because we have an issue for adding support of run configuration per module: https://github.com/Turbo87/intellij-emberjs/issues/181 This wouldn't fix your issue though. So maybe it would be better to...

I've started investigating this in the last couple weeks and it seems we can't just reuse the `HbsReferenceContributor` as it's only handling the parsed handlebars tree. Next I'll try to...