Andreas Hager

Results 16 issues of Andreas Hager

``` @template.core.components.paragraph(content = @` ${localize("foo"}${localize("bar")}${baz()} `) ``` Misses a closing brace after `localize("foo"`. Correct is: ``` @template.core.components.paragraph(content = @` ${localize("foo")}${localize("bar")}${baz()} `) ``` This should be highlighted by the plugin.

enhancement

Since `org.jusecase.jte.intellij.language.JteJavaLanguageInjector` uses a dummy class in the default package, no errors are provided by the plugin if a class from the default package is used. Maybe we could generate...

enhancement

See https://github.com/casid/jte/issues/278

### Content blocks Content blocks with more than one line should be formatted, so that `` @` `` and `` ` `` are moved on their own line, and the...

enhancement

Sometimes the plugin gets confused and shows a compile error where there is none. The only thing that helps as a workaround is to cut the entire file content and...

bug

In Java, if there is a compile error, the corresponding Java file receives a red underline in the file structure panel. Would be cool if we could do the same...

enhancement