You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vscode-dts/vscode.d.ts
+14-16Lines changed: 14 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -752,10 +752,10 @@ declare module 'vscode' {
752
752
export interface TextDocumentShowOptions {
753
753
/**
754
754
* An optional view column in which the {@link TextEditor editor} should be shown.
755
-
* The default is the {@link ViewColumn.Active active}, other values are adjusted to
756
-
* be `Min(column, columnCount + 1)`, the {@link ViewColumn.Active active}-column is
757
-
* not adjusted. Use {@linkcode ViewColumn.Beside} to open the
758
-
* editor to the side of the currently active one.
755
+
* The default is the {@link ViewColumn.Active active}. Columns that do not exist
756
+
* will be created as needed up to the maximum of {@linkcode ViewColumn.Nine}.
757
+
* Use {@linkcode ViewColumn.Beside} to open the editor to the side of the currently
758
+
* active one.
759
759
*/
760
760
viewColumn?: ViewColumn;
761
761
@@ -814,10 +814,10 @@ declare module 'vscode' {
814
814
export interface NotebookDocumentShowOptions {
815
815
/**
816
816
* An optional view column in which the {@link NotebookEditor notebook editor} should be shown.
817
-
* The default is the {@link ViewColumn.Active active}, other values are adjusted to
818
-
* be `Min(column, columnCount + 1)`, the {@link ViewColumn.Active active}-column is
819
-
* not adjusted. Use {@linkcode ViewColumn.Beside} to open the
820
-
* editor to the side of the currently active one.
817
+
* The default is the {@link ViewColumn.Active active}. Columns that do not exist
818
+
* will be created as needed up to the maximum of {@linkcode ViewColumn.Nine}.
819
+
* Use {@linkcode ViewColumn.Beside} to open the editor to the side of the currently
820
+
* active one.
821
821
*/
822
822
readonly viewColumn?: ViewColumn;
823
823
@@ -6178,8 +6178,6 @@ declare module 'vscode' {
6178
6178
* Denotes a location of an editor in the window. Editors can be arranged in a grid
6179
6179
* and each column represents one editor location in that grid by counting the editors
6180
6180
* in order of their appearance.
6181
-
*
6182
-
* Columns that do not exists will be created as needed up to the maximum of `ViewColumn.Nine`.
6183
6181
*/
6184
6182
export enum ViewColumn {
6185
6183
/**
@@ -6537,10 +6535,10 @@ declare module 'vscode' {
6537
6535
export interface TerminalEditorLocationOptions {
6538
6536
/**
6539
6537
* A view column in which the {@link Terminal terminal} should be shown in the editor area.
6540
-
* Use {@link ViewColumn.Active active} to open in the active editor group, other values are
6541
-
* adjusted to be `Min(column, columnCount + 1)`, the
6542
-
* {@link ViewColumn.Active active}-column is not adjusted. Use
6543
-
* {@linkcode ViewColumn.Beside} to open the editor to the side of the currently active one.
6538
+
* The default is the {@link ViewColumn.Active active}. Columns that do not exist
6539
+
* will be created as needed up to the maximum of {@linkcode ViewColumn.Nine}.
6540
+
* Use {@linkcode ViewColumn.Beside} to open the editor to the side of the currently
6541
+
* active one.
6544
6542
*/
6545
6543
viewColumn: ViewColumn;
6546
6544
/**
@@ -9451,8 +9449,8 @@ declare module 'vscode' {
9451
9449
* to control where the editor is being shown. Might change the {@link window.activeTextEditor active editor}.
9452
9450
*
9453
9451
* @param document A text document to be shown.
9454
-
* @param column A view column in which the {@link TextEditor editor} should be shown. The default is the {@link ViewColumn.Active active}, other values
9455
-
* are adjusted to be `Min(column, columnCount + 1)`, the {@link ViewColumn.Active active}-column is not adjusted. Use {@linkcode ViewColumn.Beside}
9452
+
* @param column A view column in which the {@link TextEditor editor} should be shown. The default is the {@link ViewColumn.Active active}.
9453
+
* Columns that do not exist will be created as needed up to the maximum of {@linkcode ViewColumn.Nine}. Use {@linkcode ViewColumn.Beside}
9456
9454
* to open the editor to the side of the currently active one.
9457
9455
* @param preserveFocus When `true` the editor will not take focus.
9458
9456
* @return A promise that resolves to an {@link TextEditor editor}.
0 commit comments