Add additional readline-like keybindings. (#524)

Adds the following conventional readline-like keybindings:

  - `Ctrl+H`: Delete the previous character.
  - `Ctrl+D`: Delete the next character.

Additionally, remaps the Debug Console command from Ctrl+D to Ctrl+O, which had been first introduced in PR #486.
This commit is contained in:
DeWitt Clinton
2025-05-23 22:13:57 -07:00
committed by GitHub
parent 30080b9f4e
commit 7a3a9066f9
4 changed files with 5 additions and 5 deletions

View File

@@ -33,7 +33,7 @@ export const DetailedMessagesDisplay: React.FC<
<Box marginBottom={1}>
<Text bold color={Colors.Foreground}>
Debug Console{' '}
<Text color={Colors.SubtleComment}>(CTRL-D to close)</Text>
<Text color={Colors.SubtleComment}>(CTRL-O to close)</Text>
</Text>
</Box>
{messages.map((msg, index) => {