Merge from vscode 1b314ab317fbff7d799b21754326b7d849889ceb

This commit is contained in:
ADS Merger
2020-07-15 23:51:18 +00:00
parent aae013d498
commit 9d3f12d0b7
554 changed files with 15159 additions and 8223 deletions

36
src/vs/monaco.d.ts vendored
View File

@@ -3138,13 +3138,6 @@ declare namespace monaco.editor {
showDeprecated?: boolean;
}
export interface IEditorConstructionOptions extends IEditorOptions {
/**
* The initial editor dimension (to avoid measuring the container).
*/
dimension?: IDimension;
}
/**
* Configuration options for the diff editor.
*/
@@ -3179,10 +3172,20 @@ declare namespace monaco.editor {
* Defaults to false.
*/
originalEditable?: boolean;
/**
/** // {{SQL CARBON EDIT}}
* Adding option to reverse coloring in diff editor
*/
reverse?: boolean;
/**
* Original editor should be have code lens enabled?
* Defaults to false.
*/
originalCodeLens?: boolean;
/**
* Modified editor should be have code lens enabled?
* Defaults to false.
*/
modifiedCodeLens?: boolean;
}
/**
@@ -3214,6 +3217,11 @@ declare namespace monaco.editor {
* Defaults to true.
*/
insertSpace?: boolean;
/**
* Ignore empty lines when inserting line comments.
* Defaults to true.
*/
ignoreEmptyLines?: boolean;
}
export type EditorCommentsOptions = Readonly<Required<IEditorCommentsOptions>>;
@@ -4394,6 +4402,18 @@ declare namespace monaco.editor {
readonly mode: string | null;
}
export interface IEditorConstructionOptions extends IEditorOptions {
/**
* The initial editor dimension (to avoid measuring the container).
*/
dimension?: IDimension;
/**
* Place overflow widgets inside an external DOM node.
* Defaults to an internal DOM node.
*/
overflowWidgetsDomNode?: HTMLElement;
}
/**
* A rich code editor.
*/