vim: Fix ctrl-w ctrl-q
and ctrl-w ctrl-c
to close active pane instead of all panes (#24018)
According to vim `ctrl-w ctrl-q` should close the active tab or pane similar to :q  Release Notes: - vim: fix `ctrl-w ctrl-q` to close active pane instead of all panes
This commit is contained in:
parent
0919f10037
commit
3d3ac2c470
1 changed files with 4 additions and 4 deletions
|
@ -611,10 +611,10 @@
|
|||
"ctrl-w shift-s": "pane::SplitHorizontal",
|
||||
"ctrl-w ctrl-s": "pane::SplitHorizontal",
|
||||
"ctrl-w s": "pane::SplitHorizontal",
|
||||
"ctrl-w ctrl-c": "pane::CloseAllItems",
|
||||
"ctrl-w c": "pane::CloseAllItems",
|
||||
"ctrl-w ctrl-q": "pane::CloseAllItems",
|
||||
"ctrl-w q": "pane::CloseAllItems",
|
||||
"ctrl-w ctrl-c": "pane::CloseActiveItem",
|
||||
"ctrl-w c": "pane::CloseActiveItem",
|
||||
"ctrl-w ctrl-q": "pane::CloseActiveItem",
|
||||
"ctrl-w q": "pane::CloseActiveItem",
|
||||
"ctrl-w ctrl-o": "workspace::CloseInactiveTabsAndPanes",
|
||||
"ctrl-w o": "workspace::CloseInactiveTabsAndPanes",
|
||||
"ctrl-w ctrl-n": "workspace::NewFileSplitHorizontal",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue