Added ColorMode to API.

This commit is contained in:
Michel Kaporin
2017-07-24 09:51:18 +02:00
parent 2c45d35090
commit 3713e4deea
14 changed files with 81 additions and 41 deletions

View File

@@ -35,7 +35,7 @@ import { IConfigurationData } from 'vs/platform/configuration/common/configurati
import { IPickOpenEntry, IPickOptions } from 'vs/platform/quickOpen/common/quickOpen';
import { SaveReason } from 'vs/workbench/services/textfile/common/textfiles';
import { TextEditorCursorStyle } from 'vs/editor/common/config/editorOptions';
import { EndOfLine, TextEditorLineNumbersStyle } from 'vs/workbench/api/node/extHostTypes';
import { EndOfLine, TextEditorLineNumbersStyle, ColorMode } from 'vs/workbench/api/node/extHostTypes';
import { TaskSet } from 'vs/workbench/parts/tasks/common/tasks';
@@ -456,6 +456,7 @@ export abstract class ExtHostHeapServiceShape {
export interface IColorInfo {
color: [number, number, number, number | undefined];
mode: ColorMode;
range: IRange;
}