File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
1414## [ Unreleased]
1515
16+ ### Added
17+
18+ - Add window layout bindings
19+ - ` SPC w 1 ` to open single column window layout
20+ - ` SPC w 2 ` to open double column window layout
21+ - ` SPC w 3 ` to open triple column window layout
22+ - ` SPC w 4 ` to open grid window layout
23+
1624### Fixed
1725
1826- Fixed outdated Flutter commands
Original file line number Diff line number Diff line change 86398639 }
86408640 ]
86418641 },
8642+ {
8643+ "key": "1",
8644+ "name": "Single column window layout",
8645+ "icon": "editor-layout",
8646+ "type": "command",
8647+ "command": "workbench.action.editorLayoutSingle"
8648+ },
8649+ {
8650+ "key": "2",
8651+ "name": "Double column window layout",
8652+ "icon": "editor-layout",
8653+ "type": "command",
8654+ "command": "workbench.action.editorLayoutTwoColumns"
8655+ },
8656+ {
8657+ "key": "3",
8658+ "name": "Triple column window layout",
8659+ "icon": "editor-layout",
8660+ "type": "command",
8661+ "command": "workbench.action.editorLayoutThreeColumns"
8662+ },
8663+ {
8664+ "key": "4",
8665+ "name": "Grid window layout",
8666+ "icon": "editor-layout",
8667+ "type": "command",
8668+ "command": "workbench.action.editorLayoutTwoByTwoGrid"
8669+ },
86428670 {
86438671 "key": "d",
86448672 "name": "Close window",
You can’t perform that action at this time.
0 commit comments