mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge from vscode e1d3dd53d17fb1529a002e4d6fb066db0a0bd385 (#6460)
* Merge from vscode e1d3dd53d17fb1529a002e4d6fb066db0a0bd385 * fix servers icon * fix tests
This commit is contained in:
@@ -664,7 +664,7 @@ export interface IEditorOptions {
|
||||
* Enable rendering of whitespace.
|
||||
* Defaults to none.
|
||||
*/
|
||||
renderWhitespace?: 'none' | 'boundary' | 'all';
|
||||
renderWhitespace?: 'none' | 'boundary' | 'selection' | 'all';
|
||||
/**
|
||||
* Enable rendering of control characters.
|
||||
* Defaults to false.
|
||||
@@ -1005,7 +1005,7 @@ export interface InternalEditorViewOptions {
|
||||
readonly scrollBeyondLastColumn: number;
|
||||
readonly smoothScrolling: boolean;
|
||||
readonly stopRenderingLineAfter: number;
|
||||
readonly renderWhitespace: 'none' | 'boundary' | 'all';
|
||||
readonly renderWhitespace: 'none' | 'boundary' | 'selection' | 'all';
|
||||
readonly renderControlCharacters: boolean;
|
||||
readonly fontLigatures: boolean;
|
||||
readonly renderIndentGuides: boolean;
|
||||
@@ -2023,7 +2023,7 @@ export class EditorOptionsValidator {
|
||||
} else if (<any>renderWhitespace === false) {
|
||||
renderWhitespace = 'none';
|
||||
}
|
||||
renderWhitespace = _stringSet<'none' | 'boundary' | 'all'>(renderWhitespace, defaults.renderWhitespace, ['none', 'boundary', 'all']);
|
||||
renderWhitespace = _stringSet<'none' | 'boundary' | 'selection' | 'all'>(renderWhitespace, defaults.renderWhitespace, ['none', 'boundary', 'selection', 'all']);
|
||||
}
|
||||
|
||||
let renderLineHighlight = opts.renderLineHighlight;
|
||||
|
||||
Reference in New Issue
Block a user