mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Further clarification in TextEditorOptions #2797
This commit is contained in:
@@ -15,12 +15,12 @@ import {Range} from 'vs/editor/common/core/range';
|
||||
import {Selection} from 'vs/editor/common/core/selection';
|
||||
|
||||
export interface ITextEditorConfigurationUpdate {
|
||||
tabSize?: number;
|
||||
insertSpaces?: boolean;
|
||||
tabSize?: number | string;
|
||||
insertSpaces?: boolean | string;
|
||||
}
|
||||
export interface ITextEditorConfiguration {
|
||||
tabSize: number;
|
||||
insertSpaces: boolean;
|
||||
tabSize: number | string;
|
||||
insertSpaces: boolean | string;
|
||||
}
|
||||
|
||||
function configurationsEqual(a:ITextEditorConfiguration, b:ITextEditorConfiguration) {
|
||||
|
||||
Reference in New Issue
Block a user