Replace pane::Split
action with Split{Left,Up,Right,Down}
This allows us to show them in the command palette.
This commit is contained in:
parent
fa942e6b3d
commit
da1eb91935
3 changed files with 14 additions and 24 deletions
|
@ -258,22 +258,10 @@
|
|||
{
|
||||
"context": "Pane",
|
||||
"bindings": {
|
||||
"cmd-k up": [
|
||||
"pane::Split",
|
||||
"Up"
|
||||
],
|
||||
"cmd-k down": [
|
||||
"pane::Split",
|
||||
"Down"
|
||||
],
|
||||
"cmd-k left": [
|
||||
"pane::Split",
|
||||
"Left"
|
||||
],
|
||||
"cmd-k right": [
|
||||
"pane::Split",
|
||||
"Right"
|
||||
]
|
||||
"cmd-k up": "pane::SplitUp",
|
||||
"cmd-k down": "pane::SplitDown",
|
||||
"cmd-k left": "pane::SplitLeft",
|
||||
"cmd-k right": "pane::SplitRight"
|
||||
}
|
||||
},
|
||||
// Bindings that should be unified with bindings for more general actions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue