zed/assets/keymaps
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
..
atom.json
default-linux.json linux: Forward ctrl-w/ctrl-e to terminal (#13263) 2024-06-19 15:14:58 +02:00
default-macos.json A set of outline panel fixes (#12965) 2024-06-13 10:46:51 +03:00
jetbrains.json Fix jetbrains keymap alt-enter to do search::SelectAllMatches (#11951) 2024-05-24 12:47:38 +03:00
storybook.json storybook: Fix Backspace in Auto Height Editor and Picker stories (#11011) 2024-04-25 17:37:47 -04:00
sublime_text.json
textmate.json Fix alt-shift-(left|right) behaviour (#11292) 2024-05-03 11:29:47 +02:00
vim.json Fix ctrl-r with no register (#13184) 2024-06-17 22:17:33 -06:00