mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
Merge pull request #34649 from eamodio/feature-active-viewcolumn
Closes #27408 - Adds ViewColumn.Active
This commit is contained in:
@@ -115,6 +115,8 @@ export function fromViewColumn(column?: vscode.ViewColumn): EditorPosition {
|
||||
editorColumn = EditorPosition.TWO;
|
||||
} else if (column === <number>types.ViewColumn.Three) {
|
||||
editorColumn = EditorPosition.THREE;
|
||||
} else if (column === <number>types.ViewColumn.Active) {
|
||||
editorColumn = undefined;
|
||||
}
|
||||
return editorColumn;
|
||||
}
|
||||
|
||||
@@ -953,6 +953,7 @@ export class CompletionList {
|
||||
}
|
||||
|
||||
export enum ViewColumn {
|
||||
Active = -1,
|
||||
One = 1,
|
||||
Two = 2,
|
||||
Three = 3
|
||||
|
||||
Reference in New Issue
Block a user