Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@jrieken if you could look at the
vscode.d.ts
API changes (will also present in todays API call).Summary of changes:
ViewColumn.BESIDE
to open an editor to the side of the active oneViewColumn
goes all the way toViewColumn.Nine
textEditor.viewColumn
will be a number even ifviewColumn > ViewColumn.Nine
to ensure any checks extensions do for this value being undefined is not broken in gridViewColumn.ONE
will always be the very first editor,ViewColumn.TWO
the next one, etc.)vscode.setEditorLayout
command to set an editor layout from an extension using the syntax we already have in the workbench (e.g. for a 2x2 grid:{ groups: [{ groups: [{}, {}], size: 0.5 }, { groups: [{}, {}], size: 0.5 }] }