Initial VS Code 1.19 source merge (#571)

* Initial 1.19 xcopy

* Fix yarn build

* Fix numerous build breaks

* Next batch of build break fixes

* More build break fixes

* Runtime breaks

* Additional post merge fixes

* Fix windows setup file

* Fix test failures.

* Update license header blocks to refer to source eula
This commit is contained in:
Karl Burtram
2018-01-28 23:37:17 -08:00
committed by GitHub
parent 9a1ac20710
commit 251ae01c3e
8009 changed files with 93378 additions and 35634 deletions

View File

@@ -276,7 +276,7 @@ export interface IEditorOpeningEvent {
prevent(callback: () => TPromise<IBaseEditor>): void;
}
export class EditorOpeningEvent {
export class EditorOpeningEvent implements IEditorOpeningEvent {
private override: () => TPromise<IBaseEditor>;
constructor(private _input: IEditorInput, private _options: IEditorOptions, private _position: Position) {
@@ -755,6 +755,7 @@ export interface IEditorStacksModel {
next(jumpGroups: boolean, cycleAtEnd?: boolean): IEditorIdentifier;
previous(jumpGroups: boolean, cycleAtStart?: boolean): IEditorIdentifier;
last(): IEditorIdentifier;
isOpen(resource: URI): boolean;
@@ -792,7 +793,7 @@ export interface IEditorContext extends IEditorIdentifier {
}
export interface IEditorCloseEvent extends IEditorIdentifier {
pinned: boolean;
replaced: boolean;
index: number;
}
@@ -808,23 +809,11 @@ export const EditorOpenPositioning = {
export const OPEN_POSITIONING_CONFIG = 'workbench.editor.openPositioning';
export interface IWorkbenchEditorConfiguration {
/* __GDPR__FRAGMENT__
"IWorkbenchEditorConfiguration" : {
"showTabs" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
"tabCloseButton": { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
"showIcons": { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
"enablePreview": { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
"enablePreviewFromQuickOpen": { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
"closeOnFileDelete": { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
"openPositioning": { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
"revealIfOpen": { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
"swipeToNavigate": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
}
*/
workbench: {
editor: {
showTabs: boolean;
tabCloseButton: 'left' | 'right' | 'off';
tabSizing: 'fit' | 'shrink';
showIcons: boolean;
enablePreview: boolean;
enablePreviewFromQuickOpen: boolean;
@@ -833,7 +822,8 @@ export interface IWorkbenchEditorConfiguration {
revealIfOpen: boolean;
swipeToNavigate: boolean,
labelFormat: 'default' | 'short' | 'medium' | 'long';
}
},
iconTheme: string;
};
}