intellij-hocon
intellij-hocon copied to clipboard
Standalone HOCON plugin for IntelliJ IDEA
The standard feature "Inject language or reference" does not work for HOCON string values.
Detection of HOCON path references in string literals is currently working only if the conf file name is "application.conf" and if it is in reources folder of a maven project...
HOCON files are ideal for structural navigation via the structure side pane. It'd be great to have this!
Jinja expressions like {{ jijna var }} or {% jinja expr %} are often used in hocon files (especially with ansible). But now plugin do not understand this expressions and...
Currently "Find usage" is available for Java and Scala files. It is possible to navigate to HOCON tree structure from flat property name. It would be nice to have similar...
The auto-suggestion in Java strings works well when I have a `application.conf` with configurations. Including files with a `.conf` extension also work fine. But when I include a file with...
Hello! IntelliJ IDEA developer is here The following exception is reported by our customer, which happens inside the intellij-hocon plugin: ``` java.lang.NullPointerException at org.jetbrains.plugins.hocon.editor.HoconCommentJoinLinesHandler.tryJoinRawLines(HoconCommentJoinLinesHandler.scala:23) at com.intellij.codeInsight.editorActions.JoinLinesHandler$JoinLineProcessor.processRawJoiners(JoinLinesHandler.java:199) at com.intellij.codeInsight.editorActions.JoinLinesHandler$JoinLineProcessor.doProcess(JoinLinesHandler.java:127) at com.intellij.codeInsight.editorActions.JoinLinesHandler$JoinLineProcessor.lambda$process$0(JoinLinesHandler.java:117)...
Hi, Hocon has two inspections: ``` org.jetbrains.plugins.hocon.ref.HoconIncludeResolutionInspection org.jetbrains.plugins.hocon.ref.HoconRequiredIncludeResolutionInspection ``` They both are missing description files what leads to errors. To add description files, just add html files with the shortname...
This is for showing uses across a project. Example syntaxes I'm familiar with: * {{}} and ${} for Camel * ${} and #{} for Spring For example: [This works](https://i.imgur.com/vSmyFNr.png) [This...