mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-09 09:42:34 -05:00
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:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user