zed
zed copied to clipboard
Fix `ctrl-delete` in terminal
Closes #30719
Release Notes:
- Fixed
ctrl-deletein terminal, now it deletes a word forward
This does not work as expected for me on macOS (inserts ~5 in the terminal).
I assume it works for you in Linux though?
I was able to get the desired behavior with the following keymap changes:
{
"context": "Terminal",
"bindings": {
"ctrl-delete": ["terminal::SendText", "\u001bd"],
}
}
@notpeter , yes I'm on Linux and your keymap change works for me! I assume the proper fix would be the change in the default keymaps?
Yep! Thanks.