mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
rename TextDocumentShowOptions#column to TextDocumentShowOptions#viewColumn
This commit is contained in:
@@ -219,7 +219,7 @@ export class ExtHostApiCommands {
|
||||
label,
|
||||
undefined,
|
||||
editorOptions,
|
||||
options ? typeConverters.fromViewColumn(options.column) : undefined
|
||||
options ? typeConverters.fromViewColumn(options.viewColumn) : undefined
|
||||
]);
|
||||
}, {
|
||||
description: 'Opens the provided resources in the diff editor to compare their contents.',
|
||||
|
||||
@@ -68,7 +68,7 @@ export class ExtHostEditors extends ExtHostEditorsShape {
|
||||
};
|
||||
} else if (typeof columnOrOptions === 'object') {
|
||||
options = {
|
||||
position: TypeConverters.fromViewColumn(columnOrOptions.column),
|
||||
position: TypeConverters.fromViewColumn(columnOrOptions.viewColumn),
|
||||
preserveFocus: columnOrOptions.preserveFocus,
|
||||
pinned: columnOrOptions.preview === undefined ? true : !columnOrOptions.preview
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user