We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 618c5b5 commit 15c99daCopy full SHA for 15c99da
liquidjava-verifier/src/main/java/liquidjava/diagnostics/LJDiagnostic.java
@@ -126,9 +126,9 @@ public String getSnippet() {
126
127
// custom message
128
if (customMessage != null && !customMessage.isBlank()) {
129
- sb.append(" " + customMessage);
+ String sep = " || ";
130
+ sb.append(" " + customMessage.replace(sep, "\n" + " ".repeat(padding + colEnd + sep.length())));
131
}
-
132
sb.append(Colors.RESET).append("\n");
133
134
0 commit comments