mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode 1b314ab317fbff7d799b21754326b7d849889ceb
This commit is contained in:
36
src/vs/monaco.d.ts
vendored
36
src/vs/monaco.d.ts
vendored
@@ -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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user