mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge from vscode 91e99652cd5fcfc072387c64e151b435e39e8dcf (#6962)
This commit is contained in:
11
src/vs/monaco.d.ts
vendored
11
src/vs/monaco.d.ts
vendored
@@ -2494,6 +2494,11 @@ declare namespace monaco.editor {
|
||||
*/
|
||||
export type EditorAutoSurroundStrategy = 'languageDefined' | 'quotes' | 'brackets' | 'never';
|
||||
|
||||
/**
|
||||
* Configuration options for typing over closing quotes or brackets
|
||||
*/
|
||||
export type EditorAutoClosingOvertypeStrategy = 'always' | 'auto' | 'never';
|
||||
|
||||
/**
|
||||
* Configuration options for editor minimap
|
||||
*/
|
||||
@@ -2922,6 +2927,10 @@ declare namespace monaco.editor {
|
||||
* Defaults to language defined behavior.
|
||||
*/
|
||||
autoClosingQuotes?: EditorAutoClosingStrategy;
|
||||
/**
|
||||
* Options for typing over closing quotes or brackets.
|
||||
*/
|
||||
autoClosingOvertype?: EditorAutoClosingOvertypeStrategy;
|
||||
/**
|
||||
* Options for auto surrounding.
|
||||
* Defaults to always allowing auto surrounding.
|
||||
@@ -3389,6 +3398,7 @@ declare namespace monaco.editor {
|
||||
readonly wordSeparators: string;
|
||||
readonly autoClosingBrackets: EditorAutoClosingStrategy;
|
||||
readonly autoClosingQuotes: EditorAutoClosingStrategy;
|
||||
readonly autoClosingOvertype: EditorAutoClosingOvertypeStrategy;
|
||||
readonly autoSurround: EditorAutoSurroundStrategy;
|
||||
readonly autoIndent: boolean;
|
||||
readonly useTabStops: boolean;
|
||||
@@ -3530,6 +3540,7 @@ declare namespace monaco.editor {
|
||||
readonly wordSeparators: boolean;
|
||||
readonly autoClosingBrackets: boolean;
|
||||
readonly autoClosingQuotes: boolean;
|
||||
readonly autoClosingOvertype: boolean;
|
||||
readonly autoSurround: boolean;
|
||||
readonly autoIndent: boolean;
|
||||
readonly useTabStops: boolean;
|
||||
|
||||
Reference in New Issue
Block a user