zed/assets
Thorsten Ball aff7a83815
linux: Forward ctrl-w/ctrl-e to terminal (#13263)
This fixes `ctrl-w` and `ctrl-e` not working in the terminal pane but
instead triggering Zed actions ("close pane" and "search project files"
respectively).

I've added both because I think they're pretty commonly used in
terminals, since they're default Emacs-style keybindings.

But I also didn't want to add more, since it's relatively easy for users
to define themselves which keybindings should be forwarded to the
terminal and which not.

All that's required is adding something like this to the keymap:

```json
{
  "context": "Terminal",
  "bindings": {
    "ctrl-n": ["terminal::SendKeystroke", "ctrl-n"],
    "ctrl-p": ["terminal::SendKeystroke", "ctrl-p"]
  }
}
```
cc @mikayla-maki 

Release Notes:

- N/A
2024-06-19 15:14:58 +02:00
..
fonts
icons Add more menus to Zed (#12940) 2024-06-18 12:16:54 -07:00
keymaps linux: Forward ctrl-w/ctrl-e to terminal (#13263) 2024-06-19 15:14:58 +02:00
settings Add more menus to Zed (#12940) 2024-06-18 12:16:54 -07:00
sounds
themes