ddanielr commented on code in PR #5856:
URL: https://github.com/apache/accumulo/pull/5856#discussion_r2320127371
##########
shell/src/main/java/org/apache/accumulo/shell/Shell.java:
##########
@@ -557,8 +558,16 @@ public void execute(final String[] args) throws
IOException {
}
}
+ public static class NonEscapeParser extends
org.jline.reader.impl.DefaultParser {
+ @Override
+ public boolean isEscapeChar(char ch) {
Review Comment:
We should verify that only the backslash char is affected by this override.
Otherwise disabling all escaping via the option in the builder might be
cleaner as the option name is referenced in jline documentation.
`reader.setOption(LineReader.Option.DISABLE_EVENT_EXPANSION, true);`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]