dlmarion commented on issue #3367:
URL: https://github.com/apache/accumulo/issues/3367#issuecomment-1530182946

   This is likely due to the upgrade of JLine to version 3. The escape 
character in their default line parser is set 
[here](https://github.com/jline/jline3/blob/master/reader/src/main/java/org/jline/reader/impl/DefaultParser.java#L53).
 I'm wondering if the solution is:
   
   ```
       DefaultParser parser = new DefaultParser();
       parser.setEscapeChars(new char[] {(char) 92});
       reader = 
LineReaderBuilder.builder().terminal(terminal).parser(parser).build();
   ```
   
   We'll have to test that out.


-- 
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]

Reply via email to