Add support for ctrl-backspace
in terminal (delete word backward) (#30139)
This commit is contained in:
parent
b0a6146362
commit
e74ae89c84
2 changed files with 2 additions and 0 deletions
|
@ -934,6 +934,7 @@
|
||||||
"ctrl-e": ["terminal::SendKeystroke", "ctrl-e"],
|
"ctrl-e": ["terminal::SendKeystroke", "ctrl-e"],
|
||||||
"ctrl-o": ["terminal::SendKeystroke", "ctrl-o"],
|
"ctrl-o": ["terminal::SendKeystroke", "ctrl-o"],
|
||||||
"ctrl-w": ["terminal::SendKeystroke", "ctrl-w"],
|
"ctrl-w": ["terminal::SendKeystroke", "ctrl-w"],
|
||||||
|
"ctrl-backspace": ["terminal::SendKeystroke", "ctrl-w"],
|
||||||
"ctrl-shift-a": "editor::SelectAll",
|
"ctrl-shift-a": "editor::SelectAll",
|
||||||
"find": "buffer_search::Deploy",
|
"find": "buffer_search::Deploy",
|
||||||
"ctrl-shift-f": "buffer_search::Deploy",
|
"ctrl-shift-f": "buffer_search::Deploy",
|
||||||
|
|
|
@ -1021,6 +1021,7 @@
|
||||||
"escape": ["terminal::SendKeystroke", "escape"],
|
"escape": ["terminal::SendKeystroke", "escape"],
|
||||||
"enter": ["terminal::SendKeystroke", "enter"],
|
"enter": ["terminal::SendKeystroke", "enter"],
|
||||||
"ctrl-c": ["terminal::SendKeystroke", "ctrl-c"],
|
"ctrl-c": ["terminal::SendKeystroke", "ctrl-c"],
|
||||||
|
"ctrl-backspace": ["terminal::SendKeystroke", "ctrl-w"],
|
||||||
"shift-pageup": "terminal::ScrollPageUp",
|
"shift-pageup": "terminal::ScrollPageUp",
|
||||||
"cmd-up": "terminal::ScrollPageUp",
|
"cmd-up": "terminal::ScrollPageUp",
|
||||||
"shift-pagedown": "terminal::ScrollPageDown",
|
"shift-pagedown": "terminal::ScrollPageDown",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue