This pull request resolves #2391. ctrl + h is not assigned to any other operations at this moment, and this feature request sounds valid to me. If we don't prefer having this, please feel free to close this.
This commit is contained in:
parent
ecb388045c
commit
db30a6f5d8
1 changed files with 5 additions and 0 deletions
|
|
@ -230,6 +230,11 @@ impl TextArea {
|
|||
code: KeyCode::Backspace,
|
||||
modifiers: KeyModifiers::NONE,
|
||||
..
|
||||
}
|
||||
| KeyEvent {
|
||||
code: KeyCode::Char('h'),
|
||||
modifiers: KeyModifiers::CONTROL,
|
||||
..
|
||||
} => self.delete_backward(1),
|
||||
KeyEvent {
|
||||
code: KeyCode::Delete,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue