You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Backspace and Delete handling is broken in several cases. The characters [ and ] below are used to indicate the beginning and end of the text selection, respectively. The character | is used to indicate the cursor position.
In this state, pressing Backspace or Delete causes the prompt text to be deleted:
[user=> ]|"xyz"
the same happens in this state:
[user=> "xy]|z"
JConsole should not permit deleting the prompt text.
In this state, pressing Backspace or Delete does not delete anything:
us|[er=> "xyz"]
JConsole should instead delete the input text without deleting any of the prompt text.
The text was updated successfully, but these errors were encountered:
Backspace and Delete handling is broken in several cases. The characters
[
and]
below are used to indicate the beginning and end of the text selection, respectively. The character|
is used to indicate the cursor position.In this state, pressing Backspace or Delete causes the prompt text to be deleted:
the same happens in this state:
JConsole should not permit deleting the prompt text.
In this state, pressing Backspace or Delete does not delete anything:
JConsole should instead delete the input text without deleting any of the prompt text.
The text was updated successfully, but these errors were encountered: