Fix space and copy/paste when editing a channel

This commit is contained in:
Mikayla 2023-09-25 11:31:02 -07:00
parent 19a9753663
commit 667fc25766
No known key found for this signature in database
2 changed files with 31 additions and 2 deletions

View file

@ -588,14 +588,20 @@
}
},
{
"context": "CollabPanel",
"context": "CollabPanel && not_editing",
"bindings": {
"ctrl-backspace": "collab_panel::Remove",
"space": "menu::Confirm"
}
},
{
"context": "CollabPanel > Editor",
"context": "(CollabPanel && editing) > Editor",
"bindings": {
"space": "collab_panel::InsertSpace"
}
},
{
"context": "(CollabPanel && not_editing) > Editor",
"bindings": {
"cmd-c": "collab_panel::StartLinkChannel",
"cmd-x": "collab_panel::StartMoveChannel",