We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc31be6 commit 6473e2aCopy full SHA for 6473e2a
solr/core/src/java/org/apache/solr/cli/SolrCLI.java
@@ -342,7 +342,10 @@ public void appendParagraph(CharSequence paragraph) throws IOException {
342
helpAppendable.setMaxWidth(120);
343
helpAppendable.setIndent(0);
344
helpAppendable.setLeftPad(0);
345
- return HelpFormatter.builder().setHelpAppendable(helpAppendable).setShowSince(false).get();
+ HelpFormatter formatter =
346
+ HelpFormatter.builder().setHelpAppendable(helpAppendable).setShowSince(false).get();
347
+ formatter.setSyntaxPrefix("usage:");
348
+ return formatter;
349
}
350
351
/** Scans Jar files on the classpath for Tool implementations to activate. */
0 commit comments