diff --git a/extensions/markdown/src/logger.ts b/extensions/markdown/src/logger.ts index e4b5864fa0d..2c22c65069b 100644 --- a/extensions/markdown/src/logger.ts +++ b/extensions/markdown/src/logger.ts @@ -5,7 +5,7 @@ 'use strict'; -import { OutputChannel, window, workspace } from "vscode"; +import { OutputChannel, window, workspace } from 'vscode'; enum Trace { Off, diff --git a/src/vs/base/browser/ui/button/button.ts b/src/vs/base/browser/ui/button/button.ts index 912f87f54bc..21db87b36cb 100644 --- a/src/vs/base/browser/ui/button/button.ts +++ b/src/vs/base/browser/ui/button/button.ts @@ -11,8 +11,8 @@ import DOM = require('vs/base/browser/dom'); import { Builder, $ } from 'vs/base/browser/builder'; import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import { KeyCode } from 'vs/base/common/keyCodes'; -import { Color } from "vs/base/common/color"; -import { mixin } from "vs/base/common/objects"; +import { Color } from 'vs/base/common/color'; +import { mixin } from 'vs/base/common/objects'; export interface IButtonOptions extends IButtonStyles { } diff --git a/src/vs/base/browser/ui/checkbox/checkbox.ts b/src/vs/base/browser/ui/checkbox/checkbox.ts index 72ce2862077..565952ad004 100644 --- a/src/vs/base/browser/ui/checkbox/checkbox.ts +++ b/src/vs/base/browser/ui/checkbox/checkbox.ts @@ -12,7 +12,7 @@ import * as objects from 'vs/base/common/objects'; import { KeyCode } from 'vs/base/common/keyCodes'; import { Widget } from 'vs/base/browser/ui/widget'; import { IKeyboardEvent } from 'vs/base/browser/keyboardEvent'; -import { Color } from "vs/base/common/color"; +import { Color } from 'vs/base/common/color'; export interface ICheckboxOpts extends ICheckboxStyles { actionClassName: string; diff --git a/src/vs/base/browser/ui/findinput/findInput.ts b/src/vs/base/browser/ui/findinput/findInput.ts index 26e4e8b23e3..97f5d4a397f 100644 --- a/src/vs/base/browser/ui/findinput/findInput.ts +++ b/src/vs/base/browser/ui/findinput/findInput.ts @@ -15,8 +15,8 @@ import Event, { Emitter } from 'vs/base/common/event'; import { IKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import { KeyCode } from 'vs/base/common/keyCodes'; import { CaseSensitiveCheckbox, WholeWordsCheckbox, RegexCheckbox } from 'vs/base/browser/ui/findinput/findInputCheckboxes'; -import { Color } from "vs/base/common/color"; -import { ICheckboxStyles } from "vs/base/browser/ui/checkbox/checkbox"; +import { Color } from 'vs/base/common/color'; +import { ICheckboxStyles } from 'vs/base/browser/ui/checkbox/checkbox'; export interface IFindInputOptions extends IFindInputStyles { placeholder?: string; diff --git a/src/vs/base/browser/ui/findinput/findInputCheckboxes.ts b/src/vs/base/browser/ui/findinput/findInputCheckboxes.ts index ceef2a29f14..8fbfd3ae1f2 100644 --- a/src/vs/base/browser/ui/findinput/findInputCheckboxes.ts +++ b/src/vs/base/browser/ui/findinput/findInputCheckboxes.ts @@ -9,7 +9,7 @@ import 'vs/css!./findInputCheckboxes'; import * as nls from 'vs/nls'; import { Checkbox } from 'vs/base/browser/ui/checkbox/checkbox'; import { IKeyboardEvent } from 'vs/base/browser/keyboardEvent'; -import { Color } from "vs/base/common/color"; +import { Color } from 'vs/base/common/color'; export interface IFindInputCheckboxOpts { appendTitle: string; diff --git a/src/vs/base/browser/ui/inputbox/inputBox.ts b/src/vs/base/browser/ui/inputbox/inputBox.ts index 59735f42ebe..dc65c401da8 100644 --- a/src/vs/base/browser/ui/inputbox/inputBox.ts +++ b/src/vs/base/browser/ui/inputbox/inputBox.ts @@ -18,7 +18,7 @@ import { IContextViewProvider, AnchorAlignment } from 'vs/base/browser/ui/contex import Event, { Emitter } from 'vs/base/common/event'; import { Widget } from 'vs/base/browser/ui/widget'; import { Color } from 'vs/base/common/color'; -import { mixin } from "vs/base/common/objects"; +import { mixin } from 'vs/base/common/objects'; const $ = dom.$; diff --git a/src/vs/base/browser/ui/list/listView.ts b/src/vs/base/browser/ui/list/listView.ts index c5f85ed9bf2..91d89a81e55 100644 --- a/src/vs/base/browser/ui/list/listView.ts +++ b/src/vs/base/browser/ui/list/listView.ts @@ -13,8 +13,8 @@ import { ScrollEvent, ScrollbarVisibility } from 'vs/base/common/scrollable'; import { RangeMap, IRange, relativeComplement, each } from './rangeMap'; import { IDelegate, IRenderer } from './list'; import { RowCache, IRow } from './rowCache'; -import { isWindows } from "vs/base/common/platform"; -import { canUseTranslate3d } from "vs/base/browser/browser"; +import { isWindows } from 'vs/base/common/platform'; +import { canUseTranslate3d } from 'vs/base/browser/browser'; interface IItem { id: string; diff --git a/src/vs/base/browser/ui/list/listWidget.ts b/src/vs/base/browser/ui/list/listWidget.ts index a306f28214a..c7f365fb2b2 100644 --- a/src/vs/base/browser/ui/list/listWidget.ts +++ b/src/vs/base/browser/ui/list/listWidget.ts @@ -18,8 +18,8 @@ import Event, { Emitter, EventBufferer, chain, mapEvent, fromCallback, any } fro import { domEvent } from 'vs/base/browser/event'; import { IDelegate, IRenderer, IListEvent, IListMouseEvent, IListContextMenuEvent } from './list'; import { ListView, IListViewOptions } from './listView'; -import { Color } from "vs/base/common/color"; -import { mixin } from "vs/base/common/objects"; +import { Color } from 'vs/base/common/color'; +import { mixin } from 'vs/base/common/objects'; export interface IIdentityProvider { (element: T): string; diff --git a/src/vs/base/browser/ui/selectBox/selectBox.ts b/src/vs/base/browser/ui/selectBox/selectBox.ts index d2121d8b5f1..3f6334893d8 100644 --- a/src/vs/base/browser/ui/selectBox/selectBox.ts +++ b/src/vs/base/browser/ui/selectBox/selectBox.ts @@ -10,8 +10,8 @@ import Event, { Emitter } from 'vs/base/common/event'; import { Widget } from 'vs/base/browser/ui/widget'; import * as dom from 'vs/base/browser/dom'; import * as arrays from 'vs/base/common/arrays'; -import { Color } from "vs/base/common/color"; -import { clone } from "vs/base/common/objects"; +import { Color } from 'vs/base/common/color'; +import { clone } from 'vs/base/common/objects'; export interface ISelectBoxStyles { selectBackground?: Color; diff --git a/src/vs/base/browser/ui/splitview/splitview.ts b/src/vs/base/browser/ui/splitview/splitview.ts index bf206e3c512..09df1966a15 100644 --- a/src/vs/base/browser/ui/splitview/splitview.ts +++ b/src/vs/base/browser/ui/splitview/splitview.ts @@ -16,7 +16,7 @@ import sash = require('vs/base/browser/ui/sash/sash'); import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import { KeyCode } from 'vs/base/common/keyCodes'; import Event, { Emitter } from 'vs/base/common/event'; -import { Color } from "vs/base/common/color"; +import { Color } from 'vs/base/common/color'; export enum Orientation { VERTICAL, diff --git a/src/vs/base/parts/quickopen/browser/quickOpenModel.ts b/src/vs/base/parts/quickopen/browser/quickOpenModel.ts index f94f6742673..06629740fd7 100644 --- a/src/vs/base/parts/quickopen/browser/quickOpenModel.ts +++ b/src/vs/base/parts/quickopen/browser/quickOpenModel.ts @@ -20,7 +20,7 @@ import { compareAnything, compareByScore as doCompareByScore } from 'vs/base/com import { ActionBar, IActionItem } from 'vs/base/browser/ui/actionbar/actionbar'; import { HighlightedLabel } from 'vs/base/browser/ui/highlightedlabel/highlightedLabel'; import DOM = require('vs/base/browser/dom'); -import { IQuickOpenStyles } from "vs/base/parts/quickopen/browser/quickOpenWidget"; +import { IQuickOpenStyles } from 'vs/base/parts/quickopen/browser/quickOpenWidget'; export interface IContext { event: any; diff --git a/src/vs/base/parts/quickopen/browser/quickOpenViewer.ts b/src/vs/base/parts/quickopen/browser/quickOpenViewer.ts index 1954e807bc0..9d0d465b63b 100644 --- a/src/vs/base/parts/quickopen/browser/quickOpenViewer.ts +++ b/src/vs/base/parts/quickopen/browser/quickOpenViewer.ts @@ -7,7 +7,7 @@ import { TPromise } from 'vs/base/common/winjs.base'; import { isFunction } from 'vs/base/common/types'; import { ITree, IRenderer, IFilter, IDataSource, IAccessibilityProvider } from 'vs/base/parts/tree/browser/tree'; import { IModel } from 'vs/base/parts/quickopen/common/quickOpen'; -import { IQuickOpenStyles } from "vs/base/parts/quickopen/browser/quickOpenWidget"; +import { IQuickOpenStyles } from 'vs/base/parts/quickopen/browser/quickOpenWidget'; export interface IModelProvider { getModel(): IModel; diff --git a/src/vs/base/parts/quickopen/browser/quickOpenWidget.ts b/src/vs/base/parts/quickopen/browser/quickOpenWidget.ts index 18c9cfe0278..07bdf0e0c7a 100644 --- a/src/vs/base/parts/quickopen/browser/quickOpenWidget.ts +++ b/src/vs/base/parts/quickopen/browser/quickOpenWidget.ts @@ -25,8 +25,8 @@ import DOM = require('vs/base/browser/dom'); import { KeyCode, KeyMod } from 'vs/base/common/keyCodes'; import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import { ScrollbarVisibility } from 'vs/base/common/scrollable'; -import { Color } from "vs/base/common/color"; -import { mixin } from "vs/base/common/objects"; +import { Color } from 'vs/base/common/color'; +import { mixin } from 'vs/base/common/objects'; export interface IQuickOpenCallbacks { onOk: () => void; diff --git a/src/vs/base/parts/tree/browser/tree.ts b/src/vs/base/parts/tree/browser/tree.ts index bf1221a8895..59ecc80ad66 100644 --- a/src/vs/base/parts/tree/browser/tree.ts +++ b/src/vs/base/parts/tree/browser/tree.ts @@ -12,8 +12,8 @@ import Keyboard = require('vs/base/browser/keyboardEvent'); import { INavigator } from 'vs/base/common/iterator'; import { ScrollbarVisibility } from 'vs/base/common/scrollable'; import Event from 'vs/base/common/event'; -import { IAction, IActionItem } from "vs/base/common/actions"; -import { Color } from "vs/base/common/color"; +import { IAction, IActionItem } from 'vs/base/common/actions'; +import { Color } from 'vs/base/common/color'; export interface ITree extends Events.IEventEmitter { diff --git a/src/vs/base/parts/tree/browser/treeImpl.ts b/src/vs/base/parts/tree/browser/treeImpl.ts index 58a7f46ea26..f2173a9bb2c 100644 --- a/src/vs/base/parts/tree/browser/treeImpl.ts +++ b/src/vs/base/parts/tree/browser/treeImpl.ts @@ -14,8 +14,8 @@ import _ = require('vs/base/parts/tree/browser/tree'); import { INavigator, MappedNavigator } from 'vs/base/common/iterator'; import Event, { Emitter } from 'vs/base/common/event'; import Lifecycle = require('vs/base/common/lifecycle'); -import { Color } from "vs/base/common/color"; -import { mixin } from "vs/base/common/objects"; +import { Color } from 'vs/base/common/color'; +import { mixin } from 'vs/base/common/objects'; export class TreeContext implements _.ITreeContext { diff --git a/src/vs/code/electron-main/app.ts b/src/vs/code/electron-main/app.ts index af9ed630e19..151d6ac5b20 100644 --- a/src/vs/code/electron-main/app.ts +++ b/src/vs/code/electron-main/app.ts @@ -44,8 +44,8 @@ import { resolveCommonProperties, machineIdStorageKey, machineIdIpcChannel } fro import { getDelayedChannel } from 'vs/base/parts/ipc/common/ipc'; import product from 'vs/platform/node/product'; import pkg from 'vs/platform/node/package'; -import { IDisposable, dispose } from "vs/base/common/lifecycle"; -import { ConfigurationService } from "vs/platform/configuration/node/configurationService"; +import { IDisposable, dispose } from 'vs/base/common/lifecycle'; +import { ConfigurationService } from 'vs/platform/configuration/node/configurationService'; import { TPromise } from "vs/base/common/winjs.base"; export class VSCodeApplication { diff --git a/src/vs/editor/browser/codeEditor.ts b/src/vs/editor/browser/codeEditor.ts index 6dc1c3e9588..721d90d9bdd 100644 --- a/src/vs/editor/browser/codeEditor.ts +++ b/src/vs/editor/browser/codeEditor.ts @@ -12,7 +12,7 @@ import { ICodeEditorService } from 'vs/editor/common/services/codeEditorService' import { CodeEditorWidget } from 'vs/editor/browser/widget/codeEditorWidget'; import { EditorAction, CommonEditorRegistry } from 'vs/editor/common/editorCommonExtensions'; import { EditorBrowserRegistry } from 'vs/editor/browser/editorBrowserExtensions'; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; export class CodeEditor extends CodeEditorWidget { diff --git a/src/vs/editor/browser/config/configuration.ts b/src/vs/editor/browser/config/configuration.ts index c8662af529e..23a4a86c292 100644 --- a/src/vs/editor/browser/config/configuration.ts +++ b/src/vs/editor/browser/config/configuration.ts @@ -15,7 +15,7 @@ import { ElementSizeObserver } from 'vs/editor/browser/config/elementSizeObserve import { FastDomNode } from 'vs/base/browser/fastDomNode'; import { CharWidthRequest, CharWidthRequestType, readCharWidths } from 'vs/editor/browser/config/charWidthReader'; import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; class CSSBasedConfigurationCache { diff --git a/src/vs/editor/browser/controller/keyboardHandler.ts b/src/vs/editor/browser/controller/keyboardHandler.ts index cf6677845e0..e138406fa13 100644 --- a/src/vs/editor/browser/controller/keyboardHandler.ts +++ b/src/vs/editor/browser/controller/keyboardHandler.ts @@ -18,8 +18,8 @@ import { HorizontalRange } from 'vs/editor/common/view/renderingContext'; import { TextAreaWrapper } from 'vs/editor/browser/controller/input/textAreaWrapper'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; import { FastDomNode } from 'vs/base/browser/fastDomNode'; -import { VerticalRevealType } from "vs/editor/common/controller/cursorEvents"; -import { ViewController } from "vs/editor/browser/view/viewController"; +import { VerticalRevealType } from 'vs/editor/common/controller/cursorEvents'; +import { ViewController } from 'vs/editor/browser/view/viewController'; export interface IKeyboardHandlerHelper { viewDomNode: FastDomNode; diff --git a/src/vs/editor/browser/controller/mouseHandler.ts b/src/vs/editor/browser/controller/mouseHandler.ts index 92051177829..aaa0a3203e8 100644 --- a/src/vs/editor/browser/controller/mouseHandler.ts +++ b/src/vs/editor/browser/controller/mouseHandler.ts @@ -22,8 +22,8 @@ import { StandardMouseWheelEvent } from 'vs/base/browser/mouseEvent'; import { EditorZoom } from 'vs/editor/common/config/editorZoom'; import { IViewCursorRenderData } from 'vs/editor/browser/viewParts/viewCursors/viewCursor'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; -import { IViewWhitespaceViewportData } from "vs/editor/common/viewModel/viewModel"; -import { ViewController } from "vs/editor/browser/view/viewController"; +import { IViewWhitespaceViewportData } from 'vs/editor/common/viewModel/viewModel'; +import { ViewController } from 'vs/editor/browser/view/viewController'; /** * Merges mouse events when mouse move events are throttled diff --git a/src/vs/editor/browser/controller/mouseTarget.ts b/src/vs/editor/browser/controller/mouseTarget.ts index f336628225e..253c5bc8421 100644 --- a/src/vs/editor/browser/controller/mouseTarget.ts +++ b/src/vs/editor/browser/controller/mouseTarget.ts @@ -14,8 +14,8 @@ import * as browser from 'vs/base/browser/browser'; import { IViewCursorRenderData } from 'vs/editor/browser/viewParts/viewCursors/viewCursor'; import { PartFingerprint, PartFingerprints } from 'vs/editor/browser/view/viewPart'; import { IViewModel } from 'vs/editor/common/viewModel/viewModel'; -import { EditorLayoutInfo } from "vs/editor/common/config/editorOptions"; -import { ViewLine } from "vs/editor/browser/viewParts/lines/viewLine"; +import { EditorLayoutInfo } from 'vs/editor/common/config/editorOptions'; +import { ViewLine } from 'vs/editor/browser/viewParts/lines/viewLine'; export interface IViewZoneData { viewZoneId: number; diff --git a/src/vs/editor/browser/controller/pointerHandler.ts b/src/vs/editor/browser/controller/pointerHandler.ts index eb726b8d9d8..96f6c014343 100644 --- a/src/vs/editor/browser/controller/pointerHandler.ts +++ b/src/vs/editor/browser/controller/pointerHandler.ts @@ -11,7 +11,7 @@ import { MouseHandler, IPointerHandlerHelper } from 'vs/editor/browser/controlle import { IMouseTarget } from 'vs/editor/browser/editorBrowser'; import { ViewContext } from 'vs/editor/common/view/viewContext'; import { EditorMouseEvent } from 'vs/editor/browser/editorDom'; -import { ViewController } from "vs/editor/browser/view/viewController"; +import { ViewController } from 'vs/editor/browser/view/viewController'; interface IThrottledGestureEvent { translationX: number; diff --git a/src/vs/editor/browser/editorBrowser.ts b/src/vs/editor/browser/editorBrowser.ts index 515427a8e8c..c945e012dee 100644 --- a/src/vs/editor/browser/editorBrowser.ts +++ b/src/vs/editor/browser/editorBrowser.ts @@ -11,9 +11,9 @@ import { IConstructorSignature1 } from 'vs/platform/instantiation/common/instant import * as editorCommon from 'vs/editor/common/editorCommon'; import { Position, IPosition } from 'vs/editor/common/core/position'; import { Range, IRange } from 'vs/editor/common/core/range'; -import * as editorOptions from "vs/editor/common/config/editorOptions"; -import { OverviewRulerZone } from "vs/editor/common/view/overviewZoneManager"; -import { IEditorWhitespace } from "vs/editor/common/viewLayout/whitespaceComputer"; +import * as editorOptions from 'vs/editor/common/config/editorOptions'; +import { OverviewRulerZone } from 'vs/editor/common/view/overviewZoneManager'; +import { IEditorWhitespace } from 'vs/editor/common/viewLayout/whitespaceComputer'; /** * A view zone is a full horizontal rectangle that 'pushes' text down. diff --git a/src/vs/editor/browser/standalone/simpleServices.ts b/src/vs/editor/browser/standalone/simpleServices.ts index d000706557b..f9c2a8fc51e 100644 --- a/src/vs/editor/browser/standalone/simpleServices.ts +++ b/src/vs/editor/browser/standalone/simpleServices.ts @@ -35,7 +35,7 @@ import { ITelemetryService, ITelemetryExperiments, ITelemetryInfo } from 'vs/pla import { ResolvedKeybinding, Keybinding, createKeybinding, SimpleKeybinding } from 'vs/base/common/keyCodes'; import { ResolvedKeybindingItem } from 'vs/platform/keybinding/common/resolvedKeybindingItem'; import { OS } from 'vs/base/common/platform'; -import { IRange } from "vs/editor/common/core/range"; +import { IRange } from 'vs/editor/common/core/range'; export class SimpleEditor implements IEditor { diff --git a/src/vs/editor/browser/standalone/standaloneCodeEditor.ts b/src/vs/editor/browser/standalone/standaloneCodeEditor.ts index 328ad5fb845..4f7c626bc77 100644 --- a/src/vs/editor/browser/standalone/standaloneCodeEditor.ts +++ b/src/vs/editor/browser/standalone/standaloneCodeEditor.ts @@ -23,8 +23,8 @@ import { ICodeEditor, IDiffEditor } from 'vs/editor/browser/editorBrowser'; import { IStandaloneThemeService } from 'vs/editor/common/services/standaloneThemeService'; import { InternalEditorAction } from 'vs/editor/common/editorAction'; import { MenuId, MenuRegistry, IMenuItem } from 'vs/platform/actions/common/actions'; -import { IDiffEditorOptions, IEditorOptions } from "vs/editor/common/config/editorOptions"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { IDiffEditorOptions, IEditorOptions } from 'vs/editor/common/config/editorOptions'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; /** * The options to create an editor. diff --git a/src/vs/editor/browser/standalone/standaloneEditor.ts b/src/vs/editor/browser/standalone/standaloneEditor.ts index d2dbf08afdb..fc453d6e545 100644 --- a/src/vs/editor/browser/standalone/standaloneEditor.ts +++ b/src/vs/editor/browser/standalone/standaloneEditor.ts @@ -34,8 +34,8 @@ import { NULL_STATE, nullTokenize } from 'vs/editor/common/modes/nullMode'; import { IStandaloneThemeData, IStandaloneThemeService } from 'vs/editor/common/services/standaloneThemeService'; import { Token } from 'vs/editor/common/core/token'; import { FontInfo, BareFontInfo } from 'vs/editor/common/config/fontInfo'; -import * as editorOptions from "vs/editor/common/config/editorOptions"; -import { CursorChangeReason } from "vs/editor/common/controller/cursorEvents"; +import * as editorOptions from 'vs/editor/common/config/editorOptions'; +import { CursorChangeReason } from 'vs/editor/common/controller/cursorEvents'; /** * @internal diff --git a/src/vs/editor/browser/view/viewController.ts b/src/vs/editor/browser/view/viewController.ts index 0304bb47de7..34828bc9f92 100644 --- a/src/vs/editor/browser/view/viewController.ts +++ b/src/vs/editor/browser/view/viewController.ts @@ -11,7 +11,7 @@ import { IEditorMouseEvent } from 'vs/editor/browser/editorBrowser'; import { ICommandService } from 'vs/platform/commands/common/commands'; import { IViewModel } from 'vs/editor/common/viewModel/viewModel'; import { ViewOutgoingEvents } from 'vs/editor/browser/view/viewOutgoingEvents'; -import { CoreCommands, CoreEditorCommand } from "vs/editor/common/controller/coreCommands"; +import { CoreCommands, CoreEditorCommand } from 'vs/editor/common/controller/coreCommands'; export interface ExecCoreEditorCommandFunc { (editorCommand: CoreEditorCommand, args: any): void; diff --git a/src/vs/editor/browser/view/viewImpl.ts b/src/vs/editor/browser/view/viewImpl.ts index 12db9cf394d..82d1a1914bb 100644 --- a/src/vs/editor/browser/view/viewImpl.ts +++ b/src/vs/editor/browser/view/viewImpl.ts @@ -50,7 +50,7 @@ import { ViewportData } from 'vs/editor/common/viewLayout/viewLinesViewportData' import { EditorScrollbar } from 'vs/editor/browser/viewParts/editorScrollbar/editorScrollbar'; import { Minimap } from 'vs/editor/browser/viewParts/minimap/minimap'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; -import { IEditorWhitespace } from "vs/editor/common/viewLayout/whitespaceComputer"; +import { IEditorWhitespace } from 'vs/editor/common/viewLayout/whitespaceComputer'; export interface IContentWidgetData { widget: editorBrowser.IContentWidget; diff --git a/src/vs/editor/browser/view/viewPart.ts b/src/vs/editor/browser/view/viewPart.ts index 573a24f36ab..1f83f9e1752 100644 --- a/src/vs/editor/browser/view/viewPart.ts +++ b/src/vs/editor/browser/view/viewPart.ts @@ -7,7 +7,7 @@ import { ViewEventHandler } from 'vs/editor/common/viewModel/viewEventHandler'; import { ViewContext } from 'vs/editor/common/view/viewContext'; import { RenderingContext, RestrictedRenderingContext } from 'vs/editor/common/view/renderingContext'; -import { FastDomNode } from "vs/base/browser/fastDomNode"; +import { FastDomNode } from 'vs/base/browser/fastDomNode'; export abstract class ViewPart extends ViewEventHandler { diff --git a/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.ts b/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.ts index 0caf1c09a9d..677b42f4b53 100644 --- a/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.ts +++ b/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.ts @@ -6,7 +6,7 @@ 'use strict'; import 'vs/css!./lineNumbers'; -import { editorLineNumbers } from "vs/editor/common/view/editorColorRegistry"; +import { editorLineNumbers } from 'vs/editor/common/view/editorColorRegistry'; import { registerThemingParticipant } from 'vs/platform/theme/common/themeService'; import * as platform from 'vs/base/common/platform'; import { DynamicViewOverlay } from 'vs/editor/browser/view/dynamicViewOverlay'; diff --git a/src/vs/editor/browser/viewParts/lines/viewLines.ts b/src/vs/editor/browser/viewParts/lines/viewLines.ts index 44edf60208a..a5fdd8b254a 100644 --- a/src/vs/editor/browser/viewParts/lines/viewLines.ts +++ b/src/vs/editor/browser/viewParts/lines/viewLines.ts @@ -18,7 +18,7 @@ import { IViewLines, HorizontalRange, LineVisibleRanges } from 'vs/editor/common import { IViewLayout, Viewport } from 'vs/editor/common/viewModel/viewModel'; import { ViewPart, PartFingerprint, PartFingerprints } from 'vs/editor/browser/view/viewPart'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; -import { VerticalRevealType } from "vs/editor/common/controller/cursorEvents"; +import { VerticalRevealType } from 'vs/editor/common/controller/cursorEvents'; class LastRenderedData { diff --git a/src/vs/editor/browser/viewParts/minimap/minimap.ts b/src/vs/editor/browser/viewParts/minimap/minimap.ts index b9c7ba2eb45..a3c3dbae71d 100644 --- a/src/vs/editor/browser/viewParts/minimap/minimap.ts +++ b/src/vs/editor/browser/viewParts/minimap/minimap.ts @@ -26,7 +26,7 @@ import { RGBA } from 'vs/base/common/color'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; import { GlobalMouseMoveMonitor, IStandardMouseMoveEventData, standardMouseMoveMerger } from 'vs/base/browser/globalMouseMoveMonitor'; import * as platform from 'vs/base/common/platform'; -import { VerticalRevealType } from "vs/editor/common/controller/cursorEvents"; +import { VerticalRevealType } from 'vs/editor/common/controller/cursorEvents'; const enum RenderMinimap { None = 0, diff --git a/src/vs/editor/browser/viewParts/overviewRuler/decorationsOverviewRuler.ts b/src/vs/editor/browser/viewParts/overviewRuler/decorationsOverviewRuler.ts index 294d06e5dff..37eaae0f2b7 100644 --- a/src/vs/editor/browser/viewParts/overviewRuler/decorationsOverviewRuler.ts +++ b/src/vs/editor/browser/viewParts/overviewRuler/decorationsOverviewRuler.ts @@ -14,7 +14,7 @@ import { Position } from 'vs/editor/common/core/position'; import { TokenizationRegistry } from 'vs/editor/common/modes'; import { IDisposable } from 'vs/base/common/lifecycle'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; -import { OverviewRulerZone } from "vs/editor/common/view/overviewZoneManager"; +import { OverviewRulerZone } from 'vs/editor/common/view/overviewZoneManager'; function getThemeType(themeId: string): editorCommon.ThemeType { if (themes.isHighContrastTheme(themeId)) { diff --git a/src/vs/editor/browser/viewParts/overviewRuler/overviewRuler.ts b/src/vs/editor/browser/viewParts/overviewRuler/overviewRuler.ts index cf0a0edf196..b3d8613c2d3 100644 --- a/src/vs/editor/browser/viewParts/overviewRuler/overviewRuler.ts +++ b/src/vs/editor/browser/viewParts/overviewRuler/overviewRuler.ts @@ -9,8 +9,8 @@ import { IOverviewRuler } from 'vs/editor/browser/editorBrowser'; import { OverviewRulerImpl } from 'vs/editor/browser/viewParts/overviewRuler/overviewRulerImpl'; import { ViewContext } from 'vs/editor/common/view/viewContext'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; -import { OverviewRulerPosition } from "vs/editor/common/config/editorOptions"; -import { OverviewRulerZone } from "vs/editor/common/view/overviewZoneManager"; +import { OverviewRulerPosition } from 'vs/editor/common/config/editorOptions'; +import { OverviewRulerZone } from 'vs/editor/common/view/overviewZoneManager'; export class OverviewRuler extends ViewEventHandler implements IOverviewRuler { diff --git a/src/vs/editor/browser/viewParts/overviewRuler/overviewRulerImpl.ts b/src/vs/editor/browser/viewParts/overviewRuler/overviewRulerImpl.ts index 880bf2b0c62..3cce58aa44c 100644 --- a/src/vs/editor/browser/viewParts/overviewRuler/overviewRulerImpl.ts +++ b/src/vs/editor/browser/viewParts/overviewRuler/overviewRulerImpl.ts @@ -10,7 +10,7 @@ import { IDisposable } from 'vs/base/common/lifecycle'; import * as browser from 'vs/base/browser/browser'; import { OverviewZoneManager, ColorZone, OverviewRulerZone } from 'vs/editor/common/view/overviewZoneManager'; import { Color } from 'vs/base/common/color'; -import { OverviewRulerPosition } from "vs/editor/common/config/editorOptions"; +import { OverviewRulerPosition } from 'vs/editor/common/config/editorOptions'; export class OverviewRulerImpl { diff --git a/src/vs/editor/browser/viewParts/viewCursors/viewCursors.ts b/src/vs/editor/browser/viewParts/viewCursors/viewCursors.ts index dfade593a60..e9c9ea9fe78 100644 --- a/src/vs/editor/browser/viewParts/viewCursors/viewCursors.ts +++ b/src/vs/editor/browser/viewParts/viewCursors/viewCursors.ts @@ -16,7 +16,7 @@ import { TimeoutTimer, IntervalTimer } from 'vs/base/common/async'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; import { registerThemingParticipant } from 'vs/platform/theme/common/themeService'; import { editorCursor } from 'vs/editor/common/view/editorColorRegistry'; -import { TextEditorCursorBlinkingStyle, TextEditorCursorStyle } from "vs/editor/common/config/editorOptions"; +import { TextEditorCursorBlinkingStyle, TextEditorCursorStyle } from 'vs/editor/common/config/editorOptions'; export class ViewCursors extends ViewPart { diff --git a/src/vs/editor/browser/widget/codeEditorWidget.ts b/src/vs/editor/browser/widget/codeEditorWidget.ts index 1c597d69345..1287263b4c3 100644 --- a/src/vs/editor/browser/widget/codeEditorWidget.ts +++ b/src/vs/editor/browser/widget/codeEditorWidget.ts @@ -29,10 +29,10 @@ import { Disposable } from 'vs/base/common/lifecycle'; import Event, { Emitter } from 'vs/base/common/event'; import { IKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import { InternalEditorAction } from 'vs/editor/common/editorAction'; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; -import { IPosition } from "vs/editor/common/core/position"; -import { IEditorWhitespace } from "vs/editor/common/viewLayout/whitespaceComputer"; -import { CoreEditorCommand } from "vs/editor/common/controller/coreCommands"; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; +import { IPosition } from 'vs/editor/common/core/position'; +import { IEditorWhitespace } from 'vs/editor/common/viewLayout/whitespaceComputer'; +import { CoreEditorCommand } from 'vs/editor/common/controller/coreCommands'; export abstract class CodeEditorWidget extends CommonCodeEditor implements editorBrowser.ICodeEditor { diff --git a/src/vs/editor/browser/widget/diffEditorWidget.ts b/src/vs/editor/browser/widget/diffEditorWidget.ts index 1f02f7d7c85..46ec60360c6 100644 --- a/src/vs/editor/browser/widget/diffEditorWidget.ts +++ b/src/vs/editor/browser/widget/diffEditorWidget.ts @@ -32,12 +32,12 @@ import { InlineDecoration } from 'vs/editor/common/viewModel/viewModel'; import { ServiceCollection } from 'vs/platform/instantiation/common/serviceCollection'; import { ColorId, MetadataConsts, FontStyle } from 'vs/editor/common/modes'; import Event, { Emitter } from 'vs/base/common/event'; -import * as editorOptions from "vs/editor/common/config/editorOptions"; -import { registerThemingParticipant, IThemeService, ITheme } from "vs/platform/theme/common/themeService"; -import { registerColor } from "vs/platform/theme/common/colorRegistry"; -import { Color, RGBA } from "vs/base/common/color"; -import { OverviewRulerZone } from "vs/editor/common/view/overviewZoneManager"; -import { IEditorWhitespace } from "vs/editor/common/viewLayout/whitespaceComputer"; +import * as editorOptions from 'vs/editor/common/config/editorOptions'; +import { registerThemingParticipant, IThemeService, ITheme } from 'vs/platform/theme/common/themeService'; +import { registerColor } from 'vs/platform/theme/common/colorRegistry'; +import { Color, RGBA } from 'vs/base/common/color'; +import { OverviewRulerZone } from 'vs/editor/common/view/overviewZoneManager'; +import { IEditorWhitespace } from 'vs/editor/common/viewLayout/whitespaceComputer'; interface IEditorDiffDecorations { decorations: editorCommon.IModelDeltaDecoration[]; diff --git a/src/vs/editor/browser/widget/embeddedCodeEditorWidget.ts b/src/vs/editor/browser/widget/embeddedCodeEditorWidget.ts index 4878234654e..0956a3e7d81 100644 --- a/src/vs/editor/browser/widget/embeddedCodeEditorWidget.ts +++ b/src/vs/editor/browser/widget/embeddedCodeEditorWidget.ts @@ -11,7 +11,7 @@ import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { ICodeEditorService } from 'vs/editor/common/services/codeEditorService'; import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import { CodeEditor } from 'vs/editor/browser/codeEditor'; -import { IConfigurationChangedEvent, IEditorOptions } from "vs/editor/common/config/editorOptions"; +import { IConfigurationChangedEvent, IEditorOptions } from 'vs/editor/common/config/editorOptions'; export class EmbeddedCodeEditorWidget extends CodeEditor { diff --git a/src/vs/editor/common/commonCodeEditor.ts b/src/vs/editor/common/commonCodeEditor.ts index 080664748bc..c21b629a895 100644 --- a/src/vs/editor/common/commonCodeEditor.ts +++ b/src/vs/editor/common/commonCodeEditor.ts @@ -28,8 +28,8 @@ import { IModelContentChangedEvent, IModelDecorationsChangedEvent, IModelLanguageChangedEvent, IModelOptionsChangedEvent, TextModelEventType } from 'vs/editor/common/model/textModelEvents'; -import * as editorOptions from "vs/editor/common/config/editorOptions"; -import { CursorEventType, ICursorPositionChangedEvent, VerticalRevealType, ICursorSelectionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import * as editorOptions from 'vs/editor/common/config/editorOptions'; +import { CursorEventType, ICursorPositionChangedEvent, VerticalRevealType, ICursorSelectionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; let EDITOR_ID = 0; diff --git a/src/vs/editor/common/config/commonEditorConfig.ts b/src/vs/editor/common/config/commonEditorConfig.ts index d3dec7efba2..c8655516e9f 100644 --- a/src/vs/editor/common/config/commonEditorConfig.ts +++ b/src/vs/editor/common/config/commonEditorConfig.ts @@ -18,7 +18,7 @@ import { ScrollbarVisibility } from 'vs/base/common/scrollable'; import { FontInfo, BareFontInfo } from 'vs/editor/common/config/fontInfo'; import { Constants } from 'vs/editor/common/core/uint'; import { EditorZoom } from 'vs/editor/common/config/editorZoom'; -import * as editorOptions from "vs/editor/common/config/editorOptions"; +import * as editorOptions from 'vs/editor/common/config/editorOptions'; /** * Control what pressing Tab does. diff --git a/src/vs/editor/common/config/defaultConfig.ts b/src/vs/editor/common/config/defaultConfig.ts index bea58575f21..7bd8bc3ea12 100644 --- a/src/vs/editor/common/config/defaultConfig.ts +++ b/src/vs/editor/common/config/defaultConfig.ts @@ -7,7 +7,7 @@ import * as nls from 'vs/nls'; import * as platform from 'vs/base/common/platform'; import { USUAL_WORD_SEPARATORS } from 'vs/editor/common/model/wordHelper'; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; export interface IConfiguration { editor: IEditorOptions; diff --git a/src/vs/editor/common/controller/coreCommands.ts b/src/vs/editor/common/controller/coreCommands.ts index 4ddb3d1fdb4..dea070af90a 100644 --- a/src/vs/editor/common/controller/coreCommands.ts +++ b/src/vs/editor/common/controller/coreCommands.ts @@ -9,21 +9,21 @@ import { Position } from 'vs/editor/common/core/position'; import { Range } from 'vs/editor/common/core/range'; import * as editorCommon from 'vs/editor/common/editorCommon'; import { CursorState, ICursors, RevealTarget, IColumnSelectData, CursorContext } from 'vs/editor/common/controller/cursorCommon'; -import { CursorChangeReason, VerticalRevealType } from "vs/editor/common/controller/cursorEvents"; -import { CursorMoveCommands, CursorMove as CursorMove_ } from "vs/editor/common/controller/cursorMoveCommands"; -import { EditorCommand, ICommandOptions, Command } from "vs/editor/common/config/config"; -import { ServicesAccessor } from "vs/platform/instantiation/common/instantiation"; -import { registerEditorCommand } from "vs/editor/common/editorCommonExtensions"; -import { IColumnSelectResult, ColumnSelection } from "vs/editor/common/controller/cursorColumnSelection"; -import { EditorContextKeys } from "vs/editor/common/editorContextKeys"; -import { KeyMod, KeyCode } from "vs/base/common/keyCodes"; -import { KeybindingsRegistry } from "vs/platform/keybinding/common/keybindingsRegistry"; +import { CursorChangeReason, VerticalRevealType } from 'vs/editor/common/controller/cursorEvents'; +import { CursorMoveCommands, CursorMove as CursorMove_ } from 'vs/editor/common/controller/cursorMoveCommands'; +import { EditorCommand, ICommandOptions, Command } from 'vs/editor/common/config/config'; +import { ServicesAccessor } from 'vs/platform/instantiation/common/instantiation'; +import { registerEditorCommand } from 'vs/editor/common/editorCommonExtensions'; +import { IColumnSelectResult, ColumnSelection } from 'vs/editor/common/controller/cursorColumnSelection'; +import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; +import { KeyMod, KeyCode } from 'vs/base/common/keyCodes'; +import { KeybindingsRegistry } from 'vs/platform/keybinding/common/keybindingsRegistry'; import H = editorCommon.Handler; -import { ICodeEditorService, getCodeEditor } from "vs/editor/common/services/codeEditorService"; -import { ContextKeyExpr } from "vs/platform/contextkey/common/contextkey"; +import { ICodeEditorService, getCodeEditor } from 'vs/editor/common/services/codeEditorService'; +import { ContextKeyExpr } from 'vs/platform/contextkey/common/contextkey'; import * as types from 'vs/base/common/types'; -import { ICommandHandlerDescription } from "vs/platform/commands/common/commands"; -import { IEditorService } from "vs/platform/editor/common/editor"; +import { ICommandHandlerDescription } from 'vs/platform/commands/common/commands'; +import { IEditorService } from 'vs/platform/editor/common/editor'; const CORE_WEIGHT = KeybindingsRegistry.WEIGHT.editorCore(); diff --git a/src/vs/editor/common/controller/cursor.ts b/src/vs/editor/common/controller/cursor.ts index 3edf262b7ce..a8098e199db 100644 --- a/src/vs/editor/common/controller/cursor.ts +++ b/src/vs/editor/common/controller/cursor.ts @@ -19,8 +19,8 @@ import { LanguageConfigurationRegistry } from 'vs/editor/common/modes/languageCo import { DeleteOperations } from 'vs/editor/common/controller/cursorDeleteOperations'; import { TypeOperations } from 'vs/editor/common/controller/cursorTypeOperations'; import { TextModelEventType, ModelRawContentChangedEvent, RawContentChangedType } from 'vs/editor/common/model/textModelEvents'; -import { CursorEventType, CursorChangeReason, ICursorPositionChangedEvent, VerticalRevealType, ICursorSelectionChangedEvent, ICursorRevealRangeEvent, CursorScrollRequest } from "vs/editor/common/controller/cursorEvents"; -import { CommonEditorRegistry } from "vs/editor/common/editorCommonExtensions"; +import { CursorEventType, CursorChangeReason, ICursorPositionChangedEvent, VerticalRevealType, ICursorSelectionChangedEvent, ICursorRevealRangeEvent, CursorScrollRequest } from 'vs/editor/common/controller/cursorEvents'; +import { CommonEditorRegistry } from 'vs/editor/common/editorCommonExtensions'; import { CoreEditorCommand } from 'vs/editor/common/controller/coreCommands'; interface IMultipleCursorOperationContext { diff --git a/src/vs/editor/common/controller/cursorCommon.ts b/src/vs/editor/common/controller/cursorCommon.ts index 7164b5deff5..dd98c3479d4 100644 --- a/src/vs/editor/common/controller/cursorCommon.ts +++ b/src/vs/editor/common/controller/cursorCommon.ts @@ -15,9 +15,9 @@ import { LanguageConfigurationRegistry } from 'vs/editor/common/modes/languageCo import { onUnexpectedError } from 'vs/base/common/errors'; import { LanguageIdentifier } from 'vs/editor/common/modes'; import { IAutoClosingPair } from 'vs/editor/common/modes/languageConfiguration'; -import { IConfigurationChangedEvent } from "vs/editor/common/config/editorOptions"; -import { ICoordinatesConverter } from "vs/editor/common/viewModel/viewModel"; -import { CursorChangeReason, VerticalRevealType } from "vs/editor/common/controller/cursorEvents"; +import { IConfigurationChangedEvent } from 'vs/editor/common/config/editorOptions'; +import { ICoordinatesConverter } from 'vs/editor/common/viewModel/viewModel'; +import { CursorChangeReason, VerticalRevealType } from 'vs/editor/common/controller/cursorEvents'; export interface IColumnSelectData { toViewLineNumber: number; diff --git a/src/vs/editor/common/editorCommon.ts b/src/vs/editor/common/editorCommon.ts index 872b28a412f..bace38517a3 100644 --- a/src/vs/editor/common/editorCommon.ts +++ b/src/vs/editor/common/editorCommon.ts @@ -21,9 +21,9 @@ import { ModelRawContentChangedEvent, IModelContentChangedEvent, IModelDecorationsChangedEvent, IModelLanguageChangedEvent, IModelOptionsChangedEvent } from 'vs/editor/common/model/textModelEvents'; -import * as editorOptions from "vs/editor/common/config/editorOptions"; -import { ICursorPositionChangedEvent, ICursorSelectionChangedEvent } from "vs/editor/common/controller/cursorEvents"; -import { ICursors } from "vs/editor/common/controller/cursorCommon"; +import * as editorOptions from 'vs/editor/common/config/editorOptions'; +import { ICursorPositionChangedEvent, ICursorSelectionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; +import { ICursors } from 'vs/editor/common/controller/cursorCommon'; /** * Vertical Lane in the overview ruler of the editor. diff --git a/src/vs/editor/common/model/mirrorModel.ts b/src/vs/editor/common/model/mirrorModel.ts index 69929dd1e86..fae93e701c3 100644 --- a/src/vs/editor/common/model/mirrorModel.ts +++ b/src/vs/editor/common/model/mirrorModel.ts @@ -8,7 +8,7 @@ import URI from 'vs/base/common/uri'; import { IRange } from 'vs/editor/common/core/range'; import { PrefixSumComputer } from 'vs/editor/common/viewModel/prefixSumComputer'; import { IModelContentChange } from 'vs/editor/common/model/textModelEvents'; -import { IPosition } from "vs/editor/common/core/position"; +import { IPosition } from 'vs/editor/common/core/position'; export interface IModelChangedEvent { /** diff --git a/src/vs/editor/common/model/textModelEvents.ts b/src/vs/editor/common/model/textModelEvents.ts index 3f81106022f..05e0d478f06 100644 --- a/src/vs/editor/common/model/textModelEvents.ts +++ b/src/vs/editor/common/model/textModelEvents.ts @@ -5,7 +5,7 @@ 'use strict'; -import { IRange } from "vs/editor/common/core/range"; +import { IRange } from 'vs/editor/common/core/range'; /** * @internal diff --git a/src/vs/editor/common/modes/supports/inplaceReplaceSupport.ts b/src/vs/editor/common/modes/supports/inplaceReplaceSupport.ts index 2d1fb4549ae..6daa5acb348 100644 --- a/src/vs/editor/common/modes/supports/inplaceReplaceSupport.ts +++ b/src/vs/editor/common/modes/supports/inplaceReplaceSupport.ts @@ -5,7 +5,7 @@ 'use strict'; import { IInplaceReplaceSupportResult } from 'vs/editor/common/modes'; -import { IRange } from "vs/editor/common/core/range"; +import { IRange } from 'vs/editor/common/core/range'; export class BasicInplaceReplace { diff --git a/src/vs/editor/common/services/editorWorkerService.ts b/src/vs/editor/common/services/editorWorkerService.ts index b19bd63b80f..f2cef5565fd 100644 --- a/src/vs/editor/common/services/editorWorkerService.ts +++ b/src/vs/editor/common/services/editorWorkerService.ts @@ -9,7 +9,7 @@ import { TPromise } from 'vs/base/common/winjs.base'; import { createDecorator } from 'vs/platform/instantiation/common/instantiation'; import { IChange, ILineChange } from 'vs/editor/common/editorCommon'; import { IInplaceReplaceSupportResult, TextEdit } from 'vs/editor/common/modes'; -import { IRange } from "vs/editor/common/core/range"; +import { IRange } from 'vs/editor/common/core/range'; export var ID_EDITOR_WORKER_SERVICE = 'editorWorkerService'; export var IEditorWorkerService = createDecorator(ID_EDITOR_WORKER_SERVICE); diff --git a/src/vs/editor/common/services/modelServiceImpl.ts b/src/vs/editor/common/services/modelServiceImpl.ts index f8b776f3c68..9bbb35747dc 100644 --- a/src/vs/editor/common/services/modelServiceImpl.ts +++ b/src/vs/editor/common/services/modelServiceImpl.ts @@ -25,7 +25,7 @@ import { DEFAULT_INDENTATION, DEFAULT_TRIM_AUTO_WHITESPACE } from 'vs/editor/com import { PLAINTEXT_LANGUAGE_IDENTIFIER } from 'vs/editor/common/modes/modesRegistry'; import { IRawTextSource, TextSource, RawTextSource } from 'vs/editor/common/model/textSource'; import * as textModelEvents from 'vs/editor/common/model/textModelEvents'; -import { ClassName } from "vs/editor/common/model/textModelWithDecorations"; +import { ClassName } from 'vs/editor/common/model/textModelWithDecorations'; function MODEL_ID(resource: URI): string { return resource.toString(); diff --git a/src/vs/editor/common/view/viewEvents.ts b/src/vs/editor/common/view/viewEvents.ts index e073822a648..3bb4059a38e 100644 --- a/src/vs/editor/common/view/viewEvents.ts +++ b/src/vs/editor/common/view/viewEvents.ts @@ -8,8 +8,8 @@ import { Position } from 'vs/editor/common/core/position'; import { Range } from 'vs/editor/common/core/range'; import { Selection } from 'vs/editor/common/core/selection'; import { ScrollEvent } from 'vs/base/common/scrollable'; -import { IViewConfigurationChangedEvent, IConfigurationChangedEvent } from "vs/editor/common/config/editorOptions"; -import { VerticalRevealType } from "vs/editor/common/controller/cursorEvents"; +import { IViewConfigurationChangedEvent, IConfigurationChangedEvent } from 'vs/editor/common/config/editorOptions'; +import { VerticalRevealType } from 'vs/editor/common/controller/cursorEvents'; export const enum ViewEventType { ViewConfigurationChanged = 1, diff --git a/src/vs/editor/common/viewLayout/linesLayout.ts b/src/vs/editor/common/viewLayout/linesLayout.ts index 951604be351..324450d4f52 100644 --- a/src/vs/editor/common/viewLayout/linesLayout.ts +++ b/src/vs/editor/common/viewLayout/linesLayout.ts @@ -6,7 +6,7 @@ import { WhitespaceComputer, IEditorWhitespace } from 'vs/editor/common/viewLayout/whitespaceComputer'; import { IPartialViewLinesViewportData } from 'vs/editor/common/viewLayout/viewLinesViewportData'; -import { IViewWhitespaceViewportData } from "vs/editor/common/viewModel/viewModel"; +import { IViewWhitespaceViewportData } from 'vs/editor/common/viewModel/viewModel'; /** * Layouting of objects that take vertical space (by having a height) and push down other objects. diff --git a/src/vs/editor/common/viewLayout/viewLayout.ts b/src/vs/editor/common/viewLayout/viewLayout.ts index 07277227978..dc1daf701f2 100644 --- a/src/vs/editor/common/viewLayout/viewLayout.ts +++ b/src/vs/editor/common/viewLayout/viewLayout.ts @@ -12,7 +12,7 @@ import { IViewLayout, IViewWhitespaceViewportData, Viewport } from 'vs/editor/co import { IPartialViewLinesViewportData } from 'vs/editor/common/viewLayout/viewLinesViewportData'; import { ViewEventDispatcher } from 'vs/editor/common/view/viewEventDispatcher'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; -import { IEditorWhitespace } from "vs/editor/common/viewLayout/whitespaceComputer"; +import { IEditorWhitespace } from 'vs/editor/common/viewLayout/whitespaceComputer'; export class LayoutProvider extends Disposable implements IViewLayout { diff --git a/src/vs/editor/common/viewModel/characterHardWrappingLineMapper.ts b/src/vs/editor/common/viewModel/characterHardWrappingLineMapper.ts index b98331cb615..39d5d618325 100644 --- a/src/vs/editor/common/viewModel/characterHardWrappingLineMapper.ts +++ b/src/vs/editor/common/viewModel/characterHardWrappingLineMapper.ts @@ -10,7 +10,7 @@ import { ILineMapperFactory, ILineMapping, OutputPosition } from 'vs/editor/comm import { CharCode } from 'vs/base/common/charCode'; import { CharacterClassifier } from 'vs/editor/common/core/characterClassifier'; import { toUint32Array } from 'vs/editor/common/core/uint'; -import { WrappingIndent } from "vs/editor/common/config/editorOptions"; +import { WrappingIndent } from 'vs/editor/common/config/editorOptions'; const enum CharacterClass { NONE = 0, diff --git a/src/vs/editor/common/viewModel/splitLinesCollection.ts b/src/vs/editor/common/viewModel/splitLinesCollection.ts index e1d3ccffb3f..9a22f94558c 100644 --- a/src/vs/editor/common/viewModel/splitLinesCollection.ts +++ b/src/vs/editor/common/viewModel/splitLinesCollection.ts @@ -11,7 +11,7 @@ import { LineTokens } from 'vs/editor/common/core/lineTokens'; import { PrefixSumComputerWithCache } from 'vs/editor/common/viewModel/prefixSumComputer'; import { ViewLineData, ViewEventsCollector } from 'vs/editor/common/viewModel/viewModel'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; -import { WrappingIndent } from "vs/editor/common/config/editorOptions"; +import { WrappingIndent } from 'vs/editor/common/config/editorOptions'; export class OutputPosition { _outputPositionBrand: void; diff --git a/src/vs/editor/common/viewModel/viewEventHandler.ts b/src/vs/editor/common/viewModel/viewEventHandler.ts index 318b15253e6..ff0ec8c10d9 100644 --- a/src/vs/editor/common/viewModel/viewEventHandler.ts +++ b/src/vs/editor/common/viewModel/viewEventHandler.ts @@ -5,7 +5,7 @@ 'use strict'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; -import { Disposable } from "vs/base/common/lifecycle"; +import { Disposable } from 'vs/base/common/lifecycle'; export class ViewEventHandler extends Disposable { diff --git a/src/vs/editor/common/viewModel/viewModelCursors.ts b/src/vs/editor/common/viewModel/viewModelCursors.ts index ff0965db698..fbfae793c15 100644 --- a/src/vs/editor/common/viewModel/viewModelCursors.ts +++ b/src/vs/editor/common/viewModel/viewModelCursors.ts @@ -9,7 +9,7 @@ import { Position } from 'vs/editor/common/core/position'; import { ICoordinatesConverter, ViewEventsCollector } from 'vs/editor/common/viewModel/viewModel'; import { Selection } from 'vs/editor/common/core/selection'; import * as viewEvents from 'vs/editor/common/view/viewEvents'; -import { ICursorRevealRangeEvent, CursorScrollRequest } from "vs/editor/common/controller/cursorEvents"; +import { ICursorRevealRangeEvent, CursorScrollRequest } from 'vs/editor/common/controller/cursorEvents'; export interface ICursorPositionChangedEvent { readonly position: Position; diff --git a/src/vs/editor/common/viewModel/viewModelImpl.ts b/src/vs/editor/common/viewModel/viewModelImpl.ts index 45c8ab41cab..bed5e27c8c7 100644 --- a/src/vs/editor/common/viewModel/viewModelImpl.ts +++ b/src/vs/editor/common/viewModel/viewModelImpl.ts @@ -21,9 +21,9 @@ import * as viewEvents from 'vs/editor/common/view/viewEvents'; import * as errors from 'vs/base/common/errors'; import { MinimapTokensColorTracker } from 'vs/editor/common/view/minimapCharRenderer'; import * as textModelEvents from 'vs/editor/common/model/textModelEvents'; -import { WrappingIndent, IConfigurationChangedEvent } from "vs/editor/common/config/editorOptions"; -import { CursorEventType, ICursorPositionChangedEvent, VerticalRevealType, ICursorSelectionChangedEvent, ICursorRevealRangeEvent, CursorScrollRequest } from "vs/editor/common/controller/cursorEvents"; -import { Cursor } from "vs/editor/common/controller/cursor"; +import { WrappingIndent, IConfigurationChangedEvent } from 'vs/editor/common/config/editorOptions'; +import { CursorEventType, ICursorPositionChangedEvent, VerticalRevealType, ICursorSelectionChangedEvent, ICursorRevealRangeEvent, CursorScrollRequest } from 'vs/editor/common/controller/cursorEvents'; +import { Cursor } from 'vs/editor/common/controller/cursor'; const ConfigurationChanged = 'configurationChanged'; diff --git a/src/vs/editor/contrib/accessibility/browser/accessibility.ts b/src/vs/editor/contrib/accessibility/browser/accessibility.ts index 45e6731157a..2d15f3f7e3b 100644 --- a/src/vs/editor/contrib/accessibility/browser/accessibility.ts +++ b/src/vs/editor/contrib/accessibility/browser/accessibility.ts @@ -25,8 +25,8 @@ import { editorAction, CommonEditorRegistry, EditorAction, EditorCommand, Comman import { ICodeEditor, IOverlayWidget, IOverlayWidgetPosition } from 'vs/editor/browser/editorBrowser'; import { editorContribution } from 'vs/editor/browser/editorBrowserExtensions'; import { ToggleTabFocusModeAction } from 'vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode'; -import { registerThemingParticipant } from "vs/platform/theme/common/themeService"; -import { editorWidgetBackground, widgetShadow, highContrastBorder } from "vs/platform/theme/common/colorRegistry"; +import { registerThemingParticipant } from 'vs/platform/theme/common/themeService'; +import { editorWidgetBackground, widgetShadow, highContrastBorder } from 'vs/platform/theme/common/colorRegistry'; const CONTEXT_ACCESSIBILITY_WIDGET_VISIBLE = new RawContextKey('accessibilityHelpWidgetVisible', false); const TOGGLE_EXPERIMENTAL_SCREEN_READER_SUPPORT_COMMAND_ID = 'toggleExperimentalScreenReaderSupport'; diff --git a/src/vs/editor/contrib/clipboard/browser/clipboard.ts b/src/vs/editor/contrib/clipboard/browser/clipboard.ts index 2db23971139..2dd0f763ede 100644 --- a/src/vs/editor/contrib/clipboard/browser/clipboard.ts +++ b/src/vs/editor/contrib/clipboard/browser/clipboard.ts @@ -10,7 +10,7 @@ import * as nls from 'vs/nls'; import { KeyCode, KeyMod } from 'vs/base/common/keyCodes'; import * as browser from 'vs/base/browser/browser'; import { ServicesAccessor } from 'vs/platform/instantiation/common/instantiation'; -import { ICodeEditorService } from "vs/editor/common/services/codeEditorService"; +import { ICodeEditorService } from 'vs/editor/common/services/codeEditorService'; import * as editorCommon from 'vs/editor/common/editorCommon'; import { editorAction, IActionOptions, EditorAction } from 'vs/editor/common/editorCommonExtensions'; import { CopyOptions } from 'vs/editor/common/controller/textAreaHandler'; diff --git a/src/vs/editor/contrib/codelens/browser/codelens.ts b/src/vs/editor/contrib/codelens/browser/codelens.ts index 61e36e4b5e5..9e2f14a662d 100644 --- a/src/vs/editor/contrib/codelens/browser/codelens.ts +++ b/src/vs/editor/contrib/codelens/browser/codelens.ts @@ -21,7 +21,7 @@ import { CodeLensProviderRegistry, CodeLensProvider, ICodeLensSymbol, Command } import * as editorBrowser from 'vs/editor/browser/editorBrowser'; import { editorContribution } from 'vs/editor/browser/editorBrowserExtensions'; import { ICodeLensData, getCodeLensData } from '../common/codelens'; -import { IConfigurationChangedEvent } from "vs/editor/common/config/editorOptions"; +import { IConfigurationChangedEvent } from 'vs/editor/common/config/editorOptions'; class CodeLensViewZone implements editorBrowser.IViewZone { diff --git a/src/vs/editor/contrib/diffNavigator/common/diffNavigator.ts b/src/vs/editor/contrib/diffNavigator/common/diffNavigator.ts index 7b71b23dc11..54fe5587a5f 100644 --- a/src/vs/editor/contrib/diffNavigator/common/diffNavigator.ts +++ b/src/vs/editor/contrib/diffNavigator/common/diffNavigator.ts @@ -10,7 +10,7 @@ import * as objects from 'vs/base/common/objects'; import { Range } from 'vs/editor/common/core/range'; import { ICommonDiffEditor, ILineChange } from 'vs/editor/common/editorCommon'; import { IDisposable, dispose } from 'vs/base/common/lifecycle'; -import { ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; interface IDiffRange { rhs: boolean; diff --git a/src/vs/editor/contrib/find/browser/find.ts b/src/vs/editor/contrib/find/browser/find.ts index bf20fe95ec8..cc32e668da5 100644 --- a/src/vs/editor/contrib/find/browser/find.ts +++ b/src/vs/editor/contrib/find/browser/find.ts @@ -12,7 +12,7 @@ import { editorContribution } from 'vs/editor/browser/editorBrowserExtensions'; import { FindWidget, IFindController } from 'vs/editor/contrib/find/browser/findWidget'; import { FindOptionsWidget } from 'vs/editor/contrib/find/browser/findOptionsWidget'; import { CommonFindController, FindStartFocusAction, IFindStartOptions } from 'vs/editor/contrib/find/common/findController'; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { IThemeService } from 'vs/platform/theme/common/themeService'; @editorContribution export class FindController extends CommonFindController implements IFindController { diff --git a/src/vs/editor/contrib/find/browser/findOptionsWidget.ts b/src/vs/editor/contrib/find/browser/findOptionsWidget.ts index b80c706b7d0..ceb2905c4c2 100644 --- a/src/vs/editor/contrib/find/browser/findOptionsWidget.ts +++ b/src/vs/editor/contrib/find/browser/findOptionsWidget.ts @@ -13,8 +13,8 @@ import { FIND_IDS } from 'vs/editor/contrib/find/common/findModel'; import { FindReplaceState } from 'vs/editor/contrib/find/common/findState'; import { CaseSensitiveCheckbox, WholeWordsCheckbox } from 'vs/base/browser/ui/findinput/findInputCheckboxes'; import { RunOnceScheduler } from 'vs/base/common/async'; -import { IThemeService, ITheme, registerThemingParticipant } from "vs/platform/theme/common/themeService"; -import { inputActiveOptionBorder, editorWidgetBackground, highContrastBorder, widgetShadow } from "vs/platform/theme/common/colorRegistry"; +import { IThemeService, ITheme, registerThemingParticipant } from 'vs/platform/theme/common/themeService'; +import { inputActiveOptionBorder, editorWidgetBackground, highContrastBorder, widgetShadow } from 'vs/platform/theme/common/colorRegistry'; export class FindOptionsWidget extends Widget implements IOverlayWidget { diff --git a/src/vs/editor/contrib/find/browser/findWidget.ts b/src/vs/editor/contrib/find/browser/findWidget.ts index 5f08915af94..ba959c4dbe7 100644 --- a/src/vs/editor/contrib/find/browser/findWidget.ts +++ b/src/vs/editor/contrib/find/browser/findWidget.ts @@ -25,8 +25,8 @@ import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/c import { CONTEXT_FIND_INPUT_FOCUSSED } from 'vs/editor/contrib/find/common/findController'; import { ITheme, registerThemingParticipant, IThemeService } from 'vs/platform/theme/common/themeService'; import { Color } from 'vs/base/common/color'; -import { IConfigurationChangedEvent } from "vs/editor/common/config/editorOptions"; -import { editorFindRangeHighlight, editorFindMatch, editorFindMatchHighlight, highContrastOutline, highContrastBorder, inputBackground, editorWidgetBackground, inputActiveOptionBorder, widgetShadow, inputForeground, inputBorder, infoBackground, infoBorder, warningBackground, warningBorder, errorBackground, errorBorder } from "vs/platform/theme/common/colorRegistry"; +import { IConfigurationChangedEvent } from 'vs/editor/common/config/editorOptions'; +import { editorFindRangeHighlight, editorFindMatch, editorFindMatchHighlight, highContrastOutline, highContrastBorder, inputBackground, editorWidgetBackground, inputActiveOptionBorder, widgetShadow, inputForeground, inputBorder, infoBackground, infoBorder, warningBackground, warningBorder, errorBackground, errorBorder } from 'vs/platform/theme/common/colorRegistry'; export interface IFindController { replace(): void; diff --git a/src/vs/editor/contrib/find/common/findController.ts b/src/vs/editor/contrib/find/common/findController.ts index a5d0a64d743..e3a133ee560 100644 --- a/src/vs/editor/contrib/find/common/findController.ts +++ b/src/vs/editor/contrib/find/common/findController.ts @@ -18,7 +18,7 @@ import { FIND_IDS, FindModelBoundToEditorModel, ToggleCaseSensitiveKeybinding, T import { FindReplaceState, FindReplaceStateChangedEvent, INewFindReplaceState } from 'vs/editor/contrib/find/common/findState'; import { DocumentHighlightProviderRegistry } from 'vs/editor/common/modes'; import { RunOnceScheduler, Delayer } from 'vs/base/common/async'; -import { CursorChangeReason, ICursorSelectionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { CursorChangeReason, ICursorSelectionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; export const enum FindStartFocusAction { diff --git a/src/vs/editor/contrib/find/common/findModel.ts b/src/vs/editor/contrib/find/common/findModel.ts index 3bf487f0c8b..a21568981d2 100644 --- a/src/vs/editor/contrib/find/common/findModel.ts +++ b/src/vs/editor/contrib/find/common/findModel.ts @@ -19,7 +19,7 @@ import { KeyCode, KeyMod } from 'vs/base/common/keyCodes'; import { Constants } from 'vs/editor/common/core/uint'; import { SearchParams } from 'vs/editor/common/model/textModelSearch'; import { IKeybindings } from 'vs/platform/keybinding/common/keybindingsRegistry'; -import { CursorChangeReason, ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { CursorChangeReason, ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; export const ToggleCaseSensitiveKeybinding: IKeybindings = { primary: KeyMod.Alt | KeyCode.KEY_C, diff --git a/src/vs/editor/contrib/find/test/common/findModel.test.ts b/src/vs/editor/contrib/find/test/common/findModel.test.ts index 8db42605241..a4dca9c06a9 100644 --- a/src/vs/editor/contrib/find/test/common/findModel.test.ts +++ b/src/vs/editor/contrib/find/test/common/findModel.test.ts @@ -13,7 +13,7 @@ import { ICommonCodeEditor } from 'vs/editor/common/editorCommon'; import { FindModelBoundToEditorModel } from 'vs/editor/contrib/find/common/findModel'; import { FindReplaceState } from 'vs/editor/contrib/find/common/findState'; import { withMockCodeEditor } from 'vs/editor/test/common/mocks/mockCodeEditor'; -import { CoreCommands } from "vs/editor/common/controller/coreCommands"; +import { CoreCommands } from 'vs/editor/common/controller/coreCommands'; suite('FindModel', () => { diff --git a/src/vs/editor/contrib/folding/browser/folding.ts b/src/vs/editor/contrib/folding/browser/folding.ts index e57d51bc117..613db084fc2 100644 --- a/src/vs/editor/contrib/folding/browser/folding.ts +++ b/src/vs/editor/contrib/folding/browser/folding.ts @@ -22,7 +22,7 @@ import { computeRanges, limitByIndent } from 'vs/editor/contrib/folding/common/i import { IFoldingController, ID } from 'vs/editor/contrib/folding/common/folding'; import { Selection } from 'vs/editor/common/core/selection'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; -import { IConfigurationChangedEvent } from "vs/editor/common/config/editorOptions"; +import { IConfigurationChangedEvent } from 'vs/editor/common/config/editorOptions'; @editorContribution export class FoldingController implements IFoldingController { diff --git a/src/vs/editor/contrib/format/browser/formatActions.ts b/src/vs/editor/contrib/format/browser/formatActions.ts index cd95eb8caae..de620bc090b 100644 --- a/src/vs/editor/contrib/format/browser/formatActions.ts +++ b/src/vs/editor/contrib/format/browser/formatActions.ts @@ -21,7 +21,7 @@ import { IEditorWorkerService } from 'vs/editor/common/services/editorWorkerServ import { CharacterSet } from 'vs/editor/common/core/characterClassifier'; import { Range } from 'vs/editor/common/core/range'; import { alert } from 'vs/base/browser/ui/aria/aria'; -import { EditorState, CodeEditorStateFlag } from "vs/editor/common/core/editorState"; +import { EditorState, CodeEditorStateFlag } from 'vs/editor/common/core/editorState'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; diff --git a/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.ts b/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.ts index fe22e9c3784..e2e84d0d951 100644 --- a/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.ts +++ b/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.ts @@ -36,10 +36,10 @@ import { ITextModelResolverService } from 'vs/editor/common/services/resolverSer import { MessageController } from './messageController'; import * as corePosition from 'vs/editor/common/core/position'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; -import { ICursorSelectionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { ICursorSelectionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; import { registerThemingParticipant } from 'vs/platform/theme/common/themeService'; import { editorActiveLinkForeground } from 'vs/platform/theme/common/colorRegistry'; -import { EditorState, CodeEditorStateFlag } from "vs/editor/common/core/editorState"; +import { EditorState, CodeEditorStateFlag } from 'vs/editor/common/core/editorState'; export class DefinitionActionConfig { diff --git a/src/vs/editor/contrib/goToDeclaration/browser/messageController.ts b/src/vs/editor/contrib/goToDeclaration/browser/messageController.ts index 628428449a4..d9422640154 100644 --- a/src/vs/editor/contrib/goToDeclaration/browser/messageController.ts +++ b/src/vs/editor/contrib/goToDeclaration/browser/messageController.ts @@ -16,7 +16,7 @@ import * as editorCommon from 'vs/editor/common/editorCommon'; import { commonEditorContribution, CommonEditorRegistry, EditorCommand } from 'vs/editor/common/editorCommonExtensions'; import { ICodeEditor, IContentWidget, IContentWidgetPosition, ContentWidgetPositionPreference } from 'vs/editor/browser/editorBrowser'; import { IContextKeyService, RawContextKey, IContextKey } from 'vs/platform/contextkey/common/contextkey'; -import { IPosition } from "vs/editor/common/core/position"; +import { IPosition } from 'vs/editor/common/core/position'; @commonEditorContribution export class MessageController { diff --git a/src/vs/editor/contrib/gotoError/browser/gotoError.ts b/src/vs/editor/contrib/gotoError/browser/gotoError.ts index d48ea6b55df..4c6a7550507 100644 --- a/src/vs/editor/contrib/gotoError/browser/gotoError.ts +++ b/src/vs/editor/contrib/gotoError/browser/gotoError.ts @@ -24,9 +24,9 @@ import { editorAction, ServicesAccessor, IActionOptions, EditorAction, EditorCom import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import { editorContribution } from 'vs/editor/browser/editorBrowserExtensions'; import { ZoneWidget } from 'vs/editor/contrib/zoneWidget/browser/zoneWidget'; -import { registerColor } from "vs/platform/theme/common/colorRegistry"; -import { IThemeService, ITheme } from "vs/platform/theme/common/themeService"; -import { Color } from "vs/base/common/color"; +import { registerColor } from 'vs/platform/theme/common/colorRegistry'; +import { IThemeService, ITheme } from 'vs/platform/theme/common/themeService'; +import { Color } from 'vs/base/common/color'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; class MarkerModel { diff --git a/src/vs/editor/contrib/hover/browser/hoverWidgets.ts b/src/vs/editor/contrib/hover/browser/hoverWidgets.ts index 94170cf47d1..bc42fb4935a 100644 --- a/src/vs/editor/contrib/hover/browser/hoverWidgets.ts +++ b/src/vs/editor/contrib/hover/browser/hoverWidgets.ts @@ -12,7 +12,7 @@ import * as editorBrowser from 'vs/editor/browser/editorBrowser'; import { Widget } from 'vs/base/browser/ui/widget'; import { DomScrollableElement } from 'vs/base/browser/ui/scrollbar/scrollableElement'; import { IDisposable, dispose } from 'vs/base/common/lifecycle'; -import { IConfigurationChangedEvent } from "vs/editor/common/config/editorOptions"; +import { IConfigurationChangedEvent } from 'vs/editor/common/config/editorOptions'; export class ContentHoverWidget extends Widget implements editorBrowser.IContentWidget { diff --git a/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.ts b/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.ts index c1145bc553d..1693459d3f2 100644 --- a/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.ts +++ b/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.ts @@ -15,7 +15,7 @@ import { editorAction, ServicesAccessor, EditorAction, commonEditorContribution import { IInplaceReplaceSupportResult } from 'vs/editor/common/modes'; import { IEditorWorkerService } from 'vs/editor/common/services/editorWorkerService'; import { InPlaceReplaceCommand } from './inPlaceReplaceCommand'; -import { EditorState, CodeEditorStateFlag } from "vs/editor/common/core/editorState"; +import { EditorState, CodeEditorStateFlag } from 'vs/editor/common/core/editorState'; @commonEditorContribution class InPlaceReplaceController implements IEditorContribution { diff --git a/src/vs/editor/contrib/links/browser/links.ts b/src/vs/editor/contrib/links/browser/links.ts index 1b0bb5b20c7..1c2e90ff97a 100644 --- a/src/vs/editor/contrib/links/browser/links.ts +++ b/src/vs/editor/contrib/links/browser/links.ts @@ -25,7 +25,7 @@ import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import { editorContribution } from 'vs/editor/browser/editorBrowserExtensions'; import { registerThemingParticipant } from 'vs/platform/theme/common/themeService'; import { editorLinkForeground, editorActiveLinkForeground } from 'vs/platform/theme/common/colorRegistry'; -import { Position } from "vs/editor/common/core/position"; +import { Position } from 'vs/editor/common/core/position'; class LinkOccurence { diff --git a/src/vs/editor/contrib/multicursor/common/multicursor.ts b/src/vs/editor/contrib/multicursor/common/multicursor.ts index 1d29d1b9911..6888e82241b 100644 --- a/src/vs/editor/contrib/multicursor/common/multicursor.ts +++ b/src/vs/editor/contrib/multicursor/common/multicursor.ts @@ -10,8 +10,8 @@ import { ICommonCodeEditor } from 'vs/editor/common/editorCommon'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; import { editorAction, ServicesAccessor, EditorAction } from 'vs/editor/common/editorCommonExtensions'; import { Selection } from 'vs/editor/common/core/selection'; -import { CursorChangeReason } from "vs/editor/common/controller/cursorEvents"; -import { CursorMoveCommands } from "vs/editor/common/controller/cursorMoveCommands"; +import { CursorChangeReason } from 'vs/editor/common/controller/cursorEvents'; +import { CursorMoveCommands } from 'vs/editor/common/controller/cursorMoveCommands'; import { CursorState, RevealTarget } from 'vs/editor/common/controller/cursorCommon'; @editorAction diff --git a/src/vs/editor/contrib/multicursor/test/common/multicursor.test.ts b/src/vs/editor/contrib/multicursor/test/common/multicursor.test.ts index 7ea7de76704..7824a0df71e 100644 --- a/src/vs/editor/contrib/multicursor/test/common/multicursor.test.ts +++ b/src/vs/editor/contrib/multicursor/test/common/multicursor.test.ts @@ -5,10 +5,10 @@ 'use strict'; import * as assert from 'assert'; -import { withMockCodeEditor } from "vs/editor/test/common/mocks/mockCodeEditor"; -import { Selection } from "vs/editor/common/core/selection"; -import { InsertCursorAbove, InsertCursorBelow } from "vs/editor/contrib/multicursor/common/multicursor"; -import { Handler } from "vs/editor/common/editorCommon"; +import { withMockCodeEditor } from 'vs/editor/test/common/mocks/mockCodeEditor'; +import { Selection } from 'vs/editor/common/core/selection'; +import { InsertCursorAbove, InsertCursorBelow } from 'vs/editor/contrib/multicursor/common/multicursor'; +import { Handler } from 'vs/editor/common/editorCommon'; suite('Multicursor', () => { diff --git a/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.ts b/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.ts index fd2a7268670..fd8a7952870 100644 --- a/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.ts +++ b/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.ts @@ -22,8 +22,8 @@ import { IContextKey, IContextKeyService } from 'vs/platform/contextkey/common/c import { Context, provideSignatureHelp } from '../common/parameterHints'; import { DomScrollableElement } from 'vs/base/browser/ui/scrollbar/scrollableElement'; import { CharacterSet } from 'vs/editor/common/core/characterClassifier'; -import { IConfigurationChangedEvent } from "vs/editor/common/config/editorOptions"; -import { ICursorSelectionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { IConfigurationChangedEvent } from 'vs/editor/common/config/editorOptions'; +import { ICursorSelectionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; const $ = dom.$; diff --git a/src/vs/editor/contrib/quickFix/browser/quickFixModel.ts b/src/vs/editor/contrib/quickFix/browser/quickFixModel.ts index d5f6529ff9e..4688f618cfd 100644 --- a/src/vs/editor/contrib/quickFix/browser/quickFixModel.ts +++ b/src/vs/editor/contrib/quickFix/browser/quickFixModel.ts @@ -14,7 +14,7 @@ import { Range } from 'vs/editor/common/core/range'; import { ICommonCodeEditor } from 'vs/editor/common/editorCommon'; import { CodeActionProviderRegistry, CodeAction } from 'vs/editor/common/modes'; import { getCodeActions } from './quickFix'; -import { Position } from "vs/editor/common/core/position"; +import { Position } from 'vs/editor/common/core/position'; export class QuickFixOracle { diff --git a/src/vs/editor/contrib/quickFix/test/browser/quickFixModel.test.ts b/src/vs/editor/contrib/quickFix/test/browser/quickFixModel.test.ts index 803503c1f88..fd3484ef05f 100644 --- a/src/vs/editor/contrib/quickFix/test/browser/quickFixModel.test.ts +++ b/src/vs/editor/contrib/quickFix/test/browser/quickFixModel.test.ts @@ -15,7 +15,7 @@ import { QuickFixOracle } from 'vs/editor/contrib/quickFix/browser/quickFixModel import { CodeActionProviderRegistry, LanguageIdentifier } from 'vs/editor/common/modes'; import { IDisposable } from 'vs/base/common/lifecycle'; import Event from 'vs/base/common/event'; -import { Range } from "vs/editor/common/core/range"; +import { Range } from 'vs/editor/common/core/range'; function promiseOnce(event: Event): TPromise { return new TPromise(resolve => { diff --git a/src/vs/editor/contrib/quickOpen/browser/editorQuickOpen.ts b/src/vs/editor/contrib/quickOpen/browser/editorQuickOpen.ts index fadfa9b1041..feb1726927b 100644 --- a/src/vs/editor/contrib/quickOpen/browser/editorQuickOpen.ts +++ b/src/vs/editor/contrib/quickOpen/browser/editorQuickOpen.ts @@ -12,8 +12,8 @@ import { editorContribution } from 'vs/editor/browser/editorBrowserExtensions'; import { QuickOpenEditorWidget } from './quickOpenEditorWidget'; import { Selection } from 'vs/editor/common/core/selection'; import { IActionOptions, EditorAction } from 'vs/editor/common/editorCommonExtensions'; -import { IThemeService } from "vs/platform/theme/common/themeService"; -import { Range } from "vs/editor/common/core/range"; +import { IThemeService } from 'vs/platform/theme/common/themeService'; +import { Range } from 'vs/editor/common/core/range'; export interface IQuickOpenControllerOpts { inputAriaLabel: string; diff --git a/src/vs/editor/contrib/quickOpen/browser/gotoLine.ts b/src/vs/editor/contrib/quickOpen/browser/gotoLine.ts index 69f5153a2c5..4688081ccd1 100644 --- a/src/vs/editor/contrib/quickOpen/browser/gotoLine.ts +++ b/src/vs/editor/contrib/quickOpen/browser/gotoLine.ts @@ -15,8 +15,8 @@ import { ICodeEditor, IDiffEditor } from 'vs/editor/browser/editorBrowser'; import { BaseEditorQuickOpenAction, IDecorator } from './editorQuickOpen'; import { editorAction, ServicesAccessor } from 'vs/editor/common/editorCommonExtensions'; import { KeyCode, KeyMod } from 'vs/base/common/keyCodes'; -import { Position } from "vs/editor/common/core/position"; -import { Range } from "vs/editor/common/core/range"; +import { Position } from 'vs/editor/common/core/position'; +import { Range } from 'vs/editor/common/core/range'; interface ParseResult { position: Position; diff --git a/src/vs/editor/contrib/quickOpen/browser/quickOpenEditorWidget.ts b/src/vs/editor/contrib/quickOpen/browser/quickOpenEditorWidget.ts index cbe21966a90..65a05955bbb 100644 --- a/src/vs/editor/contrib/quickOpen/browser/quickOpenEditorWidget.ts +++ b/src/vs/editor/contrib/quickOpen/browser/quickOpenEditorWidget.ts @@ -9,9 +9,9 @@ import { QuickOpenModel } from 'vs/base/parts/quickopen/browser/quickOpenModel'; import { QuickOpenWidget } from 'vs/base/parts/quickopen/browser/quickOpenWidget'; import { IAutoFocus } from 'vs/base/parts/quickopen/common/quickOpen'; import { ICodeEditor, IOverlayWidget, IOverlayWidgetPosition, OverlayWidgetPositionPreference } from 'vs/editor/browser/editorBrowser'; -import { attachQuickOpenStyler } from "vs/platform/theme/common/styler"; -import { IDisposable } from "vs/base/common/lifecycle"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachQuickOpenStyler } from 'vs/platform/theme/common/styler'; +import { IDisposable } from 'vs/base/common/lifecycle'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; export interface IQuickOpenEditorWidgetOptions { inputAriaLabel: string; diff --git a/src/vs/editor/contrib/quickOpen/browser/quickOutline.ts b/src/vs/editor/contrib/quickOpen/browser/quickOutline.ts index 8c04a6fb51c..5c224a3d5a8 100644 --- a/src/vs/editor/contrib/quickOpen/browser/quickOutline.ts +++ b/src/vs/editor/contrib/quickOpen/browser/quickOutline.ts @@ -20,7 +20,7 @@ import { BaseEditorQuickOpenAction, IDecorator } from './editorQuickOpen'; import { getDocumentSymbols, IOutline } from 'vs/editor/contrib/quickOpen/common/quickOpen'; import { editorAction, ServicesAccessor } from 'vs/editor/common/editorCommonExtensions'; import { KeyCode, KeyMod } from 'vs/base/common/keyCodes'; -import { Range } from "vs/editor/common/core/range"; +import { Range } from 'vs/editor/common/core/range'; let SCOPE_PREFIX = ':'; diff --git a/src/vs/editor/contrib/referenceSearch/browser/referencesController.ts b/src/vs/editor/contrib/referenceSearch/browser/referencesController.ts index b326ef16c12..d4bff8009dd 100644 --- a/src/vs/editor/contrib/referenceSearch/browser/referencesController.ts +++ b/src/vs/editor/contrib/referenceSearch/browser/referencesController.ts @@ -26,8 +26,8 @@ import { ReferencesModel, OneReference } from './referencesModel'; import { ReferenceWidget, LayoutData } from './referencesWidget'; import { Range } from 'vs/editor/common/core/range'; import { ITextModelResolverService } from 'vs/editor/common/services/resolverService'; -import { IThemeService } from "vs/platform/theme/common/themeService"; -import { Position } from "vs/editor/common/core/position"; +import { IThemeService } from 'vs/platform/theme/common/themeService'; +import { Position } from 'vs/editor/common/core/position'; export const ctxReferenceSearchVisible = new RawContextKey('referenceSearchVisible', false); diff --git a/src/vs/editor/contrib/referenceSearch/browser/referencesModel.ts b/src/vs/editor/contrib/referenceSearch/browser/referencesModel.ts index d62c1ba9bef..b0660173eb5 100644 --- a/src/vs/editor/contrib/referenceSearch/browser/referencesModel.ts +++ b/src/vs/editor/contrib/referenceSearch/browser/referencesModel.ts @@ -16,7 +16,7 @@ import { TPromise } from 'vs/base/common/winjs.base'; import { Range, IRange } from 'vs/editor/common/core/range'; import { Location } from 'vs/editor/common/modes'; import { ITextModelResolverService, ITextEditorModel } from 'vs/editor/common/services/resolverService'; -import { Position } from "vs/editor/common/core/position"; +import { Position } from 'vs/editor/common/core/position'; export class OneReference { diff --git a/src/vs/editor/contrib/referenceSearch/browser/referencesWidget.ts b/src/vs/editor/contrib/referenceSearch/browser/referencesWidget.ts index c670e7ca814..281dec3c57b 100644 --- a/src/vs/editor/contrib/referenceSearch/browser/referencesWidget.ts +++ b/src/vs/editor/contrib/referenceSearch/browser/referencesWidget.ts @@ -14,7 +14,7 @@ import { IDisposable, dispose, Disposables, IReference } from 'vs/base/common/li import { Schemas } from 'vs/base/common/network'; import * as strings from 'vs/base/common/strings'; import { TPromise } from 'vs/base/common/winjs.base'; -import { Color } from "vs/base/common/color"; +import { Color } from 'vs/base/common/color'; import { $, Builder } from 'vs/base/browser/builder'; import * as dom from 'vs/base/browser/dom'; import { Sash, ISashEvent, IVerticalSashLayoutProvider } from 'vs/base/browser/ui/sash/sash'; @@ -41,9 +41,9 @@ import { FileReferences, OneReference, ReferencesModel } from './referencesModel import { ITextModelResolverService, ITextEditorModel } from 'vs/editor/common/services/resolverService'; import { registerColor, highContrastOutline } from 'vs/platform/theme/common/colorRegistry'; import { registerThemingParticipant, ITheme, IThemeService } from 'vs/platform/theme/common/themeService'; -import { attachListStyler } from "vs/platform/theme/common/styler"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; import { IModelDecorationsChangedEvent } from 'vs/editor/common/model/textModelEvents'; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; class DecorationsManager implements IDisposable { diff --git a/src/vs/editor/contrib/rename/browser/rename.ts b/src/vs/editor/contrib/rename/browser/rename.ts index 5476c252bfa..582e3a2ab4e 100644 --- a/src/vs/editor/contrib/rename/browser/rename.ts +++ b/src/vs/editor/contrib/rename/browser/rename.ts @@ -23,12 +23,12 @@ import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import RenameInputField from './renameInputField'; import { ITextModelResolverService } from 'vs/editor/common/services/resolverService'; import { optional } from 'vs/platform/instantiation/common/instantiation'; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { IThemeService } from 'vs/platform/theme/common/themeService'; import { sequence, asWinJsPromise } from 'vs/base/common/async'; import { WorkspaceEdit, RenameProviderRegistry } from 'vs/editor/common/modes'; import { Position } from 'vs/editor/common/core/position'; import { alert } from 'vs/base/browser/ui/aria/aria'; -import { Range } from "vs/editor/common/core/range"; +import { Range } from 'vs/editor/common/core/range'; export function rename(model: IReadOnlyModel, position: Position, newName: string): TPromise { diff --git a/src/vs/editor/contrib/rename/browser/renameInputField.ts b/src/vs/editor/contrib/rename/browser/renameInputField.ts index fdc47a24679..cf5ae3696bc 100644 --- a/src/vs/editor/contrib/rename/browser/renameInputField.ts +++ b/src/vs/editor/contrib/rename/browser/renameInputField.ts @@ -12,9 +12,9 @@ import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import { TPromise } from 'vs/base/common/winjs.base'; import { Range } from 'vs/editor/common/core/range'; import { ContentWidgetPositionPreference, ICodeEditor, IContentWidget, IContentWidgetPosition } from 'vs/editor/browser/editorBrowser'; -import { IThemeService, ITheme } from "vs/platform/theme/common/themeService"; -import { inputBackground, inputBorder, inputForeground, widgetShadow, focus } from "vs/platform/theme/common/colorRegistry"; -import { Position } from "vs/editor/common/core/position"; +import { IThemeService, ITheme } from 'vs/platform/theme/common/themeService'; +import { inputBackground, inputBorder, inputForeground, widgetShadow, focus } from 'vs/platform/theme/common/colorRegistry'; +import { Position } from 'vs/editor/common/core/position'; export default class RenameInputField implements IContentWidget, IDisposable { diff --git a/src/vs/editor/contrib/selectionClipboard/electron-browser/selectionClipboard.ts b/src/vs/editor/contrib/selectionClipboard/electron-browser/selectionClipboard.ts index d38a8ac3e7f..627303a9ddd 100644 --- a/src/vs/editor/contrib/selectionClipboard/electron-browser/selectionClipboard.ts +++ b/src/vs/editor/contrib/selectionClipboard/electron-browser/selectionClipboard.ts @@ -14,8 +14,8 @@ import { editorContribution } from 'vs/editor/browser/editorBrowserExtensions'; import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey'; import { RunOnceScheduler } from 'vs/base/common/async'; import { Range } from 'vs/editor/common/core/range'; -import { IConfigurationChangedEvent } from "vs/editor/common/config/editorOptions"; -import { ICursorSelectionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { IConfigurationChangedEvent } from 'vs/editor/common/config/editorOptions'; +import { ICursorSelectionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; @editorContribution export class SelectionClipboard extends Disposable implements IEditorContribution { diff --git a/src/vs/editor/contrib/smartSelect/common/smartSelect.ts b/src/vs/editor/contrib/smartSelect/common/smartSelect.ts index 201deea4386..47b9d0f2f0b 100644 --- a/src/vs/editor/contrib/smartSelect/common/smartSelect.ts +++ b/src/vs/editor/contrib/smartSelect/common/smartSelect.ts @@ -14,7 +14,7 @@ import { ICommonCodeEditor, IEditorContribution } from 'vs/editor/common/editorC import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; import { editorAction, ServicesAccessor, IActionOptions, EditorAction, commonEditorContribution } from 'vs/editor/common/editorCommonExtensions'; import { TokenSelectionSupport, ILogicalSelectionEntry } from './tokenSelectionSupport'; -import { ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; // --- selection state machine diff --git a/src/vs/editor/contrib/smartSelect/common/tokenSelectionSupport.ts b/src/vs/editor/contrib/smartSelect/common/tokenSelectionSupport.ts index 219901f7937..46a418cb9be 100644 --- a/src/vs/editor/contrib/smartSelect/common/tokenSelectionSupport.ts +++ b/src/vs/editor/contrib/smartSelect/common/tokenSelectionSupport.ts @@ -10,7 +10,7 @@ import { Range } from 'vs/editor/common/core/range'; import { IModel } from 'vs/editor/common/editorCommon'; import { IModelService } from 'vs/editor/common/services/modelService'; import { Node, build, find } from './tokenTree'; -import { Position } from "vs/editor/common/core/position"; +import { Position } from 'vs/editor/common/core/position'; /** * Interface used to compute a hierachry of logical ranges. diff --git a/src/vs/editor/contrib/snippet/common/snippetController.ts b/src/vs/editor/contrib/snippet/common/snippetController.ts index fe689794ee6..e5cdde2bb38 100644 --- a/src/vs/editor/contrib/snippet/common/snippetController.ts +++ b/src/vs/editor/contrib/snippet/common/snippetController.ts @@ -17,8 +17,8 @@ import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import { ISnippetVariableResolver, ICodeSnippet, CodeSnippet } from './snippet'; import { SnippetVariablesResolver } from './snippetVariables'; import { EditorContextKeys } from 'vs/editor/common/editorContextKeys'; -import { Position } from "vs/editor/common/core/position"; -import { ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { Position } from 'vs/editor/common/core/position'; +import { ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; export class InsertSnippetController { diff --git a/src/vs/editor/contrib/suggest/browser/suggestModel.ts b/src/vs/editor/contrib/suggest/browser/suggestModel.ts index 1ddd9f43687..96d9642fc1c 100644 --- a/src/vs/editor/contrib/suggest/browser/suggestModel.ts +++ b/src/vs/editor/contrib/suggest/browser/suggestModel.ts @@ -15,7 +15,7 @@ import { ISuggestSupport, SuggestRegistry, StandardTokenType } from 'vs/editor/c import { Position } from 'vs/editor/common/core/position'; import { provideSuggestionItems, getSuggestionComparator, ISuggestionItem } from './suggest'; import { CompletionModel } from './completionModel'; -import { CursorChangeReason, ICursorSelectionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { CursorChangeReason, ICursorSelectionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; export interface ICancelEvent { retrigger: boolean; diff --git a/src/vs/editor/contrib/suggest/browser/suggestWidget.ts b/src/vs/editor/contrib/suggest/browser/suggestWidget.ts index 995f6ba89cd..e322cd428b0 100644 --- a/src/vs/editor/contrib/suggest/browser/suggestWidget.ts +++ b/src/vs/editor/contrib/suggest/browser/suggestWidget.ts @@ -27,9 +27,9 @@ import { Context as SuggestContext } from './suggest'; import { ICompletionItem, CompletionModel } from './completionModel'; import { alert } from 'vs/base/browser/ui/aria/aria'; import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; -import { attachListStyler } from "vs/platform/theme/common/styler"; -import { IThemeService, ITheme, registerThemingParticipant } from "vs/platform/theme/common/themeService"; -import { registerColor, editorWidgetBackground, highContrastBorder, listFocusBackground, highContrastOutline } from "vs/platform/theme/common/colorRegistry"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService, ITheme, registerThemingParticipant } from 'vs/platform/theme/common/themeService'; +import { registerColor, editorWidgetBackground, highContrastBorder, listFocusBackground, highContrastOutline } from 'vs/platform/theme/common/colorRegistry'; const sticky = false; // for development purposes diff --git a/src/vs/editor/contrib/suggest/test/browser/completionModel.test.ts b/src/vs/editor/contrib/suggest/test/browser/completionModel.test.ts index 1e63b78160b..dfa3422e627 100644 --- a/src/vs/editor/contrib/suggest/test/browser/completionModel.test.ts +++ b/src/vs/editor/contrib/suggest/test/browser/completionModel.test.ts @@ -8,7 +8,7 @@ import * as assert from 'assert'; import { ISuggestion, ISuggestResult, ISuggestSupport } from 'vs/editor/common/modes'; import { ISuggestionItem } from 'vs/editor/contrib/suggest/browser/suggest'; import { CompletionModel } from 'vs/editor/contrib/suggest/browser/completionModel'; -import { IPosition } from "vs/editor/common/core/position"; +import { IPosition } from 'vs/editor/common/core/position'; suite('CompletionModel', function () { diff --git a/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts b/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts index d8550270b11..7940ea38430 100644 --- a/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts +++ b/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts @@ -17,7 +17,7 @@ import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import { Position } from 'vs/editor/common/core/position'; import { registerColor, editorSelectionHighlight, highContrastOutline } from 'vs/platform/theme/common/colorRegistry'; import { registerThemingParticipant } from 'vs/platform/theme/common/themeService'; -import { CursorChangeReason, ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { CursorChangeReason, ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; export const editorWordHighlight = registerColor('editorWordHighlight', { dark: '#575757B8', light: '#57575740', hc: null }, nls.localize('wordHighlight', 'Background color of a symbol during read-access, like reading a variable.')); export const editorWordHighlightStrong = registerColor('editorWordHighlightStrong', { dark: '#004972B8', light: '#0e639c40', hc: null }, nls.localize('wordHighlightStrong', 'Background color of a symbol during write-access, like writing to a variable.')); diff --git a/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.ts b/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.ts index 39a4b7e7cd4..c994fda89fb 100644 --- a/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.ts +++ b/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.ts @@ -21,7 +21,7 @@ import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import { IOptions, ZoneWidget, IStyles } from './zoneWidget'; import { EmbeddedCodeEditorWidget } from 'vs/editor/browser/widget/embeddedCodeEditorWidget'; import { ContextKeyExpr, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; -import { Color } from "vs/base/common/color"; +import { Color } from 'vs/base/common/color'; export var IPeekViewService = createDecorator('peekViewService'); diff --git a/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.ts b/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.ts index 18497896d1d..b4441f6b13a 100644 --- a/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.ts +++ b/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.ts @@ -13,9 +13,9 @@ import * as dom from 'vs/base/browser/dom'; import { Sash, Orientation, IHorizontalSashLayoutProvider, ISashEvent } from 'vs/base/browser/ui/sash/sash'; import { Range, IRange } from 'vs/editor/common/core/range'; import { ICodeEditor, IOverlayWidget, IOverlayWidgetPosition, IViewZone, IViewZoneChangeAccessor } from 'vs/editor/browser/editorBrowser'; -import { Color, RGBA } from "vs/base/common/color"; -import { EditorLayoutInfo } from "vs/editor/common/config/editorOptions"; -import { Position, IPosition } from "vs/editor/common/core/position"; +import { Color, RGBA } from 'vs/base/common/color'; +import { EditorLayoutInfo } from 'vs/editor/common/config/editorOptions'; +import { Position, IPosition } from 'vs/editor/common/core/position'; export interface IOptions { showFrame?: boolean; diff --git a/src/vs/editor/test/common/controller/cursor.test.ts b/src/vs/editor/test/common/controller/cursor.test.ts index 4fe0b11374e..1c241d0f945 100644 --- a/src/vs/editor/test/common/controller/cursor.test.ts +++ b/src/vs/editor/test/common/controller/cursor.test.ts @@ -22,9 +22,9 @@ import { TestConfiguration } from 'vs/editor/test/common/mocks/testConfiguration import { MockMode } from 'vs/editor/test/common/mocks/mockMode'; import { LanguageIdentifier } from 'vs/editor/common/modes'; import { viewModelHelper } from 'vs/editor/test/common/editorTestUtils'; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; -import { ICursorPositionChangedEvent, ICursorSelectionChangedEvent } from "vs/editor/common/controller/cursorEvents"; -import { CoreCommands } from "vs/editor/common/controller/coreCommands"; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; +import { ICursorPositionChangedEvent, ICursorSelectionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; +import { CoreCommands } from 'vs/editor/common/controller/coreCommands'; let H = Handler; diff --git a/src/vs/editor/test/common/controller/cursorMoveCommand.test.ts b/src/vs/editor/test/common/controller/cursorMoveCommand.test.ts index 339b84c95e6..c1388ba58e8 100644 --- a/src/vs/editor/test/common/controller/cursorMoveCommand.test.ts +++ b/src/vs/editor/test/common/controller/cursorMoveCommand.test.ts @@ -12,12 +12,12 @@ import { Model } from 'vs/editor/common/model/model'; import { IMode } from 'vs/editor/common/modes'; import { TestConfiguration } from 'vs/editor/test/common/mocks/testConfiguration'; import { viewModelHelper as aViewModelHelper } from 'vs/editor/test/common/editorTestUtils'; -import { CursorMove } from "vs/editor/common/controller/cursorMoveCommands"; +import { CursorMove } from 'vs/editor/common/controller/cursorMoveCommands'; import { Range } from 'vs/editor/common/core/range'; import { Selection } from 'vs/editor/common/core/selection'; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; -import { IViewModelHelper } from "vs/editor/common/controller/cursorCommon"; -import { CoreCommands } from "vs/editor/common/controller/coreCommands"; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; +import { IViewModelHelper } from 'vs/editor/common/controller/cursorCommon'; +import { CoreCommands } from 'vs/editor/common/controller/coreCommands'; suite('Cursor move command test', () => { diff --git a/src/vs/editor/test/common/editorTestUtils.ts b/src/vs/editor/test/common/editorTestUtils.ts index 7870db03849..493a466de87 100644 --- a/src/vs/editor/test/common/editorTestUtils.ts +++ b/src/vs/editor/test/common/editorTestUtils.ts @@ -9,7 +9,7 @@ import { Position } from 'vs/editor/common/core/position'; import { Range } from 'vs/editor/common/core/range'; import { Selection } from 'vs/editor/common/core/selection'; import { IModel } from 'vs/editor/common/editorCommon'; -import { IViewModelHelper } from "vs/editor/common/controller/cursorCommon"; +import { IViewModelHelper } from 'vs/editor/common/controller/cursorCommon'; export function withEditorModel(text: string[], callback: (model: Model) => void): void { var model = Model.createFromString(text.join('\n')); diff --git a/src/vs/editor/test/common/mocks/mockCodeEditor.ts b/src/vs/editor/test/common/mocks/mockCodeEditor.ts index b350389419e..3a70f211dbc 100644 --- a/src/vs/editor/test/common/mocks/mockCodeEditor.ts +++ b/src/vs/editor/test/common/mocks/mockCodeEditor.ts @@ -15,7 +15,7 @@ import * as editorCommon from 'vs/editor/common/editorCommon'; import { Model } from 'vs/editor/common/model/model'; import { TestConfiguration } from 'vs/editor/test/common/mocks/testConfiguration'; import { Range } from 'vs/editor/common/core/range'; -import * as editorOptions from "vs/editor/common/config/editorOptions"; +import * as editorOptions from 'vs/editor/common/config/editorOptions'; export class MockCodeEditor extends CommonCodeEditor { protected _createConfiguration(options: editorOptions.IEditorOptions): CommonEditorConfiguration { diff --git a/src/vs/editor/test/common/model/editableTextModel.test.ts b/src/vs/editor/test/common/model/editableTextModel.test.ts index f2903f035ba..6166f3eb8e5 100644 --- a/src/vs/editor/test/common/model/editableTextModel.test.ts +++ b/src/vs/editor/test/common/model/editableTextModel.test.ts @@ -11,7 +11,7 @@ import { EndOfLinePreference, EndOfLineSequence, IIdentifiedSingleEditOperation import { EditableTextModel, IValidatedEditOperation } from 'vs/editor/common/model/editableTextModel'; import { MirrorModel } from 'vs/editor/common/model/mirrorModel'; import { assertSyncedModels, testApplyEditsWithSyncedModels } from 'vs/editor/test/common/model/editableTextModelTestUtils'; -import { IModelContentChangedEvent } from "vs/editor/common/model/textModelEvents"; +import { IModelContentChangedEvent } from 'vs/editor/common/model/textModelEvents'; suite('EditorModel - EditableTextModel._getInverseEdits', () => { diff --git a/src/vs/editor/test/common/model/editableTextModelTestUtils.ts b/src/vs/editor/test/common/model/editableTextModelTestUtils.ts index cd0fa126363..a901d29fcd3 100644 --- a/src/vs/editor/test/common/model/editableTextModelTestUtils.ts +++ b/src/vs/editor/test/common/model/editableTextModelTestUtils.ts @@ -11,7 +11,7 @@ import { MirrorModel } from 'vs/editor/common/model/mirrorModel'; import { TextModel } from 'vs/editor/common/model/textModel'; import { Position } from 'vs/editor/common/core/position'; import { RawTextSource } from 'vs/editor/common/model/textSource'; -import { IModelContentChangedEvent } from "vs/editor/common/model/textModelEvents"; +import { IModelContentChangedEvent } from 'vs/editor/common/model/textModelEvents'; export function testApplyEditsWithSyncedModels(original: string[], edits: editorCommon.IIdentifiedSingleEditOperation[], expected: string[], inputEditsAreInvalid: boolean = false): void { var originalStr = original.join('\n'); diff --git a/src/vs/editor/test/common/model/model.modes.test.ts b/src/vs/editor/test/common/model/model.modes.test.ts index f7ea0f910e1..053df8fe511 100644 --- a/src/vs/editor/test/common/model/model.modes.test.ts +++ b/src/vs/editor/test/common/model/model.modes.test.ts @@ -13,7 +13,7 @@ import { Model } from 'vs/editor/common/model/model'; import * as modes from 'vs/editor/common/modes'; import { NULL_STATE } from 'vs/editor/common/modes/nullMode'; import { TokenizationResult2 } from 'vs/editor/common/core/token'; -import { TokenIterator } from "vs/editor/common/model/tokenIterator"; +import { TokenIterator } from 'vs/editor/common/model/tokenIterator'; // --------- utils diff --git a/src/vs/editor/test/common/viewModel/testViewModel.ts b/src/vs/editor/test/common/viewModel/testViewModel.ts index fe97700e61b..7c1e6ed9a77 100644 --- a/src/vs/editor/test/common/viewModel/testViewModel.ts +++ b/src/vs/editor/test/common/viewModel/testViewModel.ts @@ -9,7 +9,7 @@ import { CharacterHardWrappingLineMapperFactory } from 'vs/editor/common/viewMod import { TestConfiguration } from 'vs/editor/test/common/mocks/testConfiguration'; import { SplitLinesCollection } from 'vs/editor/common/viewModel/splitLinesCollection'; import { ViewModel } from 'vs/editor/common/viewModel/viewModelImpl'; -import { MockCodeEditorCreationOptions } from "vs/editor/test/common/mocks/mockCodeEditor"; +import { MockCodeEditorCreationOptions } from 'vs/editor/test/common/mocks/mockCodeEditor'; export function testViewModel(text: string[], options: MockCodeEditorCreationOptions, callback: (viewModel: ViewModel, model: Model) => void): void { const EDITOR_ID = 1; diff --git a/src/vs/editor/test/common/viewModel/viewModelDecorations.test.ts b/src/vs/editor/test/common/viewModel/viewModelDecorations.test.ts index 10fd8689066..0f52c5129c3 100644 --- a/src/vs/editor/test/common/viewModel/viewModelDecorations.test.ts +++ b/src/vs/editor/test/common/viewModel/viewModelDecorations.test.ts @@ -7,7 +7,7 @@ import * as assert from 'assert'; import { Range } from 'vs/editor/common/core/range'; import { testViewModel } from 'vs/editor/test/common/viewModel/testViewModel'; -import { MockCodeEditorCreationOptions } from "vs/editor/test/common/mocks/mockCodeEditor"; +import { MockCodeEditorCreationOptions } from 'vs/editor/test/common/mocks/mockCodeEditor'; suite('ViewModelDecorations', () => { test('getDecorationsViewportData', () => { diff --git a/src/vs/platform/theme/common/styler.ts b/src/vs/platform/theme/common/styler.ts index 6b6aaee18be..6a4638c4b3a 100644 --- a/src/vs/platform/theme/common/styler.ts +++ b/src/vs/platform/theme/common/styler.ts @@ -7,8 +7,8 @@ import { ITheme, IThemeService } from 'vs/platform/theme/common/themeService'; import { inputBackground, inputForeground, ColorIdentifier, selectForeground, selectBackground, selectBorder, inputBorder, foreground, editorBackground, highContrastBorder, inputActiveOptionBorder, listFocusBackground, listActiveSelectionBackground, listActiveSelectionForeground, listFocusAndSelectionBackground, listFocusAndSelectionForeground, listInactiveFocusBackground, listInactiveSelectionBackground, listHoverBackground, listDropBackground, pickerGroupBorder, pickerGroupForeground, widgetShadow, infoBorder, infoBackground, warningBorder, warningBackground, errorBorder, errorBackground, highContrastOutline, buttonForeground, buttonBackground, buttonHoverBackground } from 'vs/platform/theme/common/colorRegistry'; -import { IDisposable } from "vs/base/common/lifecycle"; -import { SIDE_BAR_SECTION_HEADER_BACKGROUND } from "vs/workbench/common/theme"; +import { IDisposable } from 'vs/base/common/lifecycle'; +import { SIDE_BAR_SECTION_HEADER_BACKGROUND } from 'vs/workbench/common/theme'; export interface IThemable { style(colors: { [name: string]: ColorIdentifier }): void; diff --git a/src/vs/workbench/api/node/extHost.api.impl.ts b/src/vs/workbench/api/node/extHost.api.impl.ts index 893690f7e56..99158711efc 100644 --- a/src/vs/workbench/api/node/extHost.api.impl.ts +++ b/src/vs/workbench/api/node/extHost.api.impl.ts @@ -49,7 +49,7 @@ import * as paths from 'vs/base/common/paths'; import { realpath } from 'fs'; import { MainContext, ExtHostContext, InstanceCollection, IInitData } from './extHost.protocol'; import * as languageConfiguration from 'vs/editor/common/modes/languageConfiguration'; -import { TextEditorCursorStyle } from "vs/editor/common/config/editorOptions"; +import { TextEditorCursorStyle } from 'vs/editor/common/config/editorOptions'; export interface IExtensionApiFactory { (extension: IExtensionDescription): typeof vscode; diff --git a/src/vs/workbench/api/node/extHost.protocol.ts b/src/vs/workbench/api/node/extHost.protocol.ts index 78888c78cf0..fd14b310455 100644 --- a/src/vs/workbench/api/node/extHost.protocol.ts +++ b/src/vs/workbench/api/node/extHost.protocol.ts @@ -40,9 +40,9 @@ import { IApplyEditsOptions, IUndoStopOptions, TextEditorRevealType, ITextEditor import { InternalTreeNodeContent } from 'vs/workbench/parts/explorers/common/treeExplorerViewModel'; import { TaskSet } from 'vs/workbench/parts/tasks/common/tasks'; import { IModelChangedEvent } from 'vs/editor/common/model/mirrorModel'; -import { IPosition } from "vs/editor/common/core/position"; -import { IRange } from "vs/editor/common/core/range"; -import { ISelection } from "vs/editor/common/core/selection"; +import { IPosition } from 'vs/editor/common/core/position'; +import { IRange } from 'vs/editor/common/core/range'; +import { ISelection } from 'vs/editor/common/core/selection'; export interface IEnvironment { enableProposedApi: boolean; diff --git a/src/vs/workbench/api/node/extHostLanguageFeatures.ts b/src/vs/workbench/api/node/extHostLanguageFeatures.ts index 28f2b12d0ed..38c1be8627e 100644 --- a/src/vs/workbench/api/node/extHostLanguageFeatures.ts +++ b/src/vs/workbench/api/node/extHostLanguageFeatures.ts @@ -21,8 +21,8 @@ import { IWorkspaceSymbolProvider } from 'vs/workbench/parts/search/common/searc import { asWinJsPromise } from 'vs/base/common/async'; import { MainContext, MainThreadLanguageFeaturesShape, ExtHostLanguageFeaturesShape, ObjectIdentifier } from './extHost.protocol'; import { regExpLeadsToEndlessLoop } from 'vs/base/common/strings'; -import { IPosition } from "vs/editor/common/core/position"; -import { IRange } from "vs/editor/common/core/range"; +import { IPosition } from 'vs/editor/common/core/position'; +import { IRange } from 'vs/editor/common/core/range'; // --- adapter diff --git a/src/vs/workbench/api/node/extHostProgress.ts b/src/vs/workbench/api/node/extHostProgress.ts index db1761100ef..9aefb3cc400 100644 --- a/src/vs/workbench/api/node/extHostProgress.ts +++ b/src/vs/workbench/api/node/extHostProgress.ts @@ -8,7 +8,7 @@ import { Progress, ProgressOptions, CancellationToken } from 'vscode'; import { MainThreadProgressShape } from './extHost.protocol'; import { ProgressLocation } from './extHostTypeConverters'; import { IExtensionDescription } from 'vs/platform/extensions/common/extensions'; -import { IProgressStep } from "vs/platform/progress/common/progress"; +import { IProgressStep } from 'vs/platform/progress/common/progress'; export class ExtHostProgress { diff --git a/src/vs/workbench/api/node/extHostTextEditor.ts b/src/vs/workbench/api/node/extHostTextEditor.ts index 5134ebfa644..32774bc050c 100644 --- a/src/vs/workbench/api/node/extHostTextEditor.ts +++ b/src/vs/workbench/api/node/extHostTextEditor.ts @@ -16,8 +16,8 @@ import { IResolvedTextEditorConfiguration, ITextEditorConfigurationUpdate } from import * as TypeConverters from './extHostTypeConverters'; import { MainThreadEditorsShape } from './extHost.protocol'; import * as vscode from 'vscode'; -import { TextEditorCursorStyle } from "vs/editor/common/config/editorOptions"; -import { IRange } from "vs/editor/common/core/range"; +import { TextEditorCursorStyle } from 'vs/editor/common/config/editorOptions'; +import { IRange } from 'vs/editor/common/core/range'; export class TextEditorDecorationType implements vscode.TextEditorDecorationType { diff --git a/src/vs/workbench/api/node/extHostTypeConverters.ts b/src/vs/workbench/api/node/extHostTypeConverters.ts index 18a58541dca..86353877593 100644 --- a/src/vs/workbench/api/node/extHostTypeConverters.ts +++ b/src/vs/workbench/api/node/extHostTypeConverters.ts @@ -13,9 +13,9 @@ import * as vscode from 'vscode'; import URI from 'vs/base/common/uri'; import { ProgressLocation as MainProgressLocation } from 'vs/platform/progress/common/progress'; import { SaveReason } from 'vs/workbench/services/textfile/common/textfiles'; -import { IPosition } from "vs/editor/common/core/position"; -import { IRange } from "vs/editor/common/core/range"; -import { ISelection } from "vs/editor/common/core/selection"; +import { IPosition } from 'vs/editor/common/core/position'; +import { IRange } from 'vs/editor/common/core/range'; +import { ISelection } from 'vs/editor/common/core/selection'; export interface PositionLike { line: number; diff --git a/src/vs/workbench/api/node/mainThreadEditor.ts b/src/vs/workbench/api/node/mainThreadEditor.ts index 3a999991b35..b3ba44a0361 100644 --- a/src/vs/workbench/api/node/mainThreadEditor.ts +++ b/src/vs/workbench/api/node/mainThreadEditor.ts @@ -13,8 +13,8 @@ import { Range, IRange } from 'vs/editor/common/core/range'; import { Selection, ISelection } from 'vs/editor/common/core/selection'; import { SnippetController } from 'vs/editor/contrib/snippet/common/snippetController'; import { EndOfLine, TextEditorLineNumbersStyle } from 'vs/workbench/api/node/extHostTypes'; -import { TextEditorCursorStyle, cursorStyleToString } from "vs/editor/common/config/editorOptions"; -import { ICursorSelectionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { TextEditorCursorStyle, cursorStyleToString } from 'vs/editor/common/config/editorOptions'; +import { ICursorSelectionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; export interface ITextEditorConfigurationUpdate { tabSize?: number | 'auto'; diff --git a/src/vs/workbench/api/node/mainThreadEditors.ts b/src/vs/workbench/api/node/mainThreadEditors.ts index 97a8384ce74..1163612c0f0 100644 --- a/src/vs/workbench/api/node/mainThreadEditors.ts +++ b/src/vs/workbench/api/node/mainThreadEditors.ts @@ -18,8 +18,8 @@ import { MainThreadDocumentsAndEditors } from './mainThreadDocumentsAndEditors'; import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { equals as objectEquals } from 'vs/base/common/objects'; import { ExtHostContext, MainThreadEditorsShape, ExtHostEditorsShape, ITextDocumentShowOptions, ITextEditorPositionData } from './extHost.protocol'; -import { IRange } from "vs/editor/common/core/range"; -import { ISelection } from "vs/editor/common/core/selection"; +import { IRange } from 'vs/editor/common/core/range'; +import { ISelection } from 'vs/editor/common/core/selection'; export class MainThreadEditors extends MainThreadEditorsShape { diff --git a/src/vs/workbench/browser/labels.ts b/src/vs/workbench/browser/labels.ts index e7cb33774ac..3d6f853fc0f 100644 --- a/src/vs/workbench/browser/labels.ts +++ b/src/vs/workbench/browser/labels.ts @@ -18,7 +18,7 @@ import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import { IModelService } from 'vs/editor/common/services/modelService'; -import { IEnvironmentService } from "vs/platform/environment/common/environment"; +import { IEnvironmentService } from 'vs/platform/environment/common/environment'; export interface IEditorLabel { name: string; diff --git a/src/vs/workbench/browser/layout.ts b/src/vs/workbench/browser/layout.ts index 198a8b34bf9..dcba6d958fd 100644 --- a/src/vs/workbench/browser/layout.ts +++ b/src/vs/workbench/browser/layout.ts @@ -18,7 +18,7 @@ import { IContextViewService } from 'vs/platform/contextview/browser/contextView import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; import { getZoomFactor } from 'vs/base/browser/browser'; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { IThemeService } from 'vs/platform/theme/common/themeService'; const MIN_SIDEBAR_PART_WIDTH = 170; const MIN_EDITOR_PART_HEIGHT = 70; diff --git a/src/vs/workbench/browser/parts/activitybar/activitybarActions.ts b/src/vs/workbench/browser/parts/activitybar/activitybarActions.ts index 66d3840e9c3..5d39239f5a2 100644 --- a/src/vs/workbench/browser/parts/activitybar/activitybarActions.ts +++ b/src/vs/workbench/browser/parts/activitybar/activitybarActions.ts @@ -23,9 +23,9 @@ import { ViewletDescriptor } from 'vs/workbench/browser/viewlet'; import { dispose } from 'vs/base/common/lifecycle'; import { IViewletService, } from 'vs/workbench/services/viewlet/browser/viewlet'; import { IPartService, Parts } from 'vs/workbench/services/part/common/partService'; -import { IThemeService, ITheme, registerThemingParticipant, ICssStyleCollector } from "vs/platform/theme/common/themeService"; -import { ACTIVITY_BADGE_FOREGROUND, ACTIVITY_BADGE_BACKGROUND, ACTIVITY_BAR_DRAG_AND_DROP_BACKGROUND, ACTIVITY_BAR_FOREGROUND } from "vs/workbench/common/theme"; -import { highContrastBorder, highContrastOutline, focus } from "vs/platform/theme/common/colorRegistry"; +import { IThemeService, ITheme, registerThemingParticipant, ICssStyleCollector } from 'vs/platform/theme/common/themeService'; +import { ACTIVITY_BADGE_FOREGROUND, ACTIVITY_BADGE_BACKGROUND, ACTIVITY_BAR_DRAG_AND_DROP_BACKGROUND, ACTIVITY_BAR_FOREGROUND } from 'vs/workbench/common/theme'; +import { highContrastBorder, highContrastOutline, focus } from 'vs/platform/theme/common/colorRegistry'; export class ActivityAction extends Action { private badge: IBadge; diff --git a/src/vs/workbench/browser/parts/editor/editor.contribution.ts b/src/vs/workbench/browser/parts/editor/editor.contribution.ts index a7d2f169347..2c9e9bb9edb 100644 --- a/src/vs/workbench/browser/parts/editor/editor.contribution.ts +++ b/src/vs/workbench/browser/parts/editor/editor.contribution.ts @@ -36,7 +36,7 @@ import { NAVIGATE_IN_GROUP_TWO_PREFIX, ShowEditorsInGroupThreeAction, NAVIGATE_IN_GROUP_THREE_PREFIX, FocusLastEditorInStackAction, OpenNextRecentlyUsedEditorInGroupAction, MoveEditorToPreviousGroupAction, MoveEditorToNextGroupAction, MoveEditorLeftInGroupAction, ClearRecentFilesAction } from 'vs/workbench/browser/parts/editor/editorActions'; import * as editorCommands from 'vs/workbench/browser/parts/editor/editorCommands'; -import { IWorkbenchEditorService } from "vs/workbench/services/editor/common/editorService"; +import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService'; // Register String Editor Registry.as(EditorExtensions.Editors).registerEditor( diff --git a/src/vs/workbench/browser/parts/editor/editorStatus.ts b/src/vs/workbench/browser/parts/editor/editorStatus.ts index 42033406782..b7fcf752dba 100644 --- a/src/vs/workbench/browser/parts/editor/editorStatus.ts +++ b/src/vs/workbench/browser/parts/editor/editorStatus.ts @@ -46,7 +46,7 @@ import { IExtensionGalleryService } from 'vs/platform/extensionManagement/common import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'; import { getCodeEditor as getEditorWidget } from 'vs/editor/common/services/codeEditorService'; import { IPreferencesService } from 'vs/workbench/parts/preferences/common/preferences'; -import { ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; function toEditorWithEncodingSupport(input: IEditorInput): IEncodingSupport { if (input instanceof SideBySideEditorInput) { diff --git a/src/vs/workbench/browser/parts/editor/textEditor.ts b/src/vs/workbench/browser/parts/editor/textEditor.ts index 5573f11d3c0..d0f89123f6a 100644 --- a/src/vs/workbench/browser/parts/editor/textEditor.ts +++ b/src/vs/workbench/browser/parts/editor/textEditor.ts @@ -27,7 +27,7 @@ import { getCodeEditor } from 'vs/editor/common/services/codeEditorService'; import { IModeService } from 'vs/editor/common/services/modeService'; import { ITextFileService, SaveReason, AutoSaveMode } from 'vs/workbench/services/textfile/common/textfiles'; import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; const TEXT_EDITOR_VIEW_STATE_PREFERENCE_KEY = 'textEditorViewState'; diff --git a/src/vs/workbench/browser/parts/panel/panelPart.ts b/src/vs/workbench/browser/parts/panel/panelPart.ts index 66e3712e2a4..baf3f657b28 100644 --- a/src/vs/workbench/browser/parts/panel/panelPart.ts +++ b/src/vs/workbench/browser/parts/panel/panelPart.ts @@ -26,7 +26,7 @@ import { ActionsOrientation, ActionBar } from 'vs/base/browser/ui/actionbar/acti import { ClosePanelAction, PanelAction, ToggleMaximizedPanelAction } from 'vs/workbench/browser/parts/panel/panelActions'; import { IThemeService, registerThemingParticipant, ITheme, ICssStyleCollector } from 'vs/platform/theme/common/themeService'; import { PANEL_BACKGROUND, PANEL_BORDER_TOP_COLOR, PANEL_ACTIVE_TITLE_COLOR, PANEL_INACTIVE_TITLE_COLOR, PANEL_ACTIVE_TITLE_BORDER } from 'vs/workbench/common/theme'; -import { highContrastOutline, focus } from "vs/platform/theme/common/colorRegistry"; +import { highContrastOutline, focus } from 'vs/platform/theme/common/colorRegistry'; export class PanelPart extends CompositePart implements IPanelService { diff --git a/src/vs/workbench/browser/parts/quickopen/quickOpenController.ts b/src/vs/workbench/browser/parts/quickopen/quickOpenController.ts index de3cd359369..c801ec72380 100644 --- a/src/vs/workbench/browser/parts/quickopen/quickOpenController.ts +++ b/src/vs/workbench/browser/parts/quickopen/quickOpenController.ts @@ -49,9 +49,9 @@ import { IContextKeyService, RawContextKey, IContextKey } from 'vs/platform/cont import { IHistoryService } from 'vs/workbench/services/history/common/history'; import { IListService } from 'vs/platform/list/browser/listService'; import { IThemeService } from 'vs/platform/theme/common/themeService'; -import { SIDE_BAR_BACKGROUND } from "vs/workbench/common/theme"; -import { attachQuickOpenStyler } from "vs/platform/theme/common/styler"; -import { IEnvironmentService } from "vs/platform/environment/common/environment"; +import { SIDE_BAR_BACKGROUND } from 'vs/workbench/common/theme'; +import { attachQuickOpenStyler } from 'vs/platform/theme/common/styler'; +import { IEnvironmentService } from 'vs/platform/environment/common/environment'; const HELP_PREFIX = '?'; diff --git a/src/vs/workbench/common/editor.ts b/src/vs/workbench/common/editor.ts index a772075df47..2e4bdaba8d8 100644 --- a/src/vs/workbench/common/editor.ts +++ b/src/vs/workbench/common/editor.ts @@ -17,7 +17,7 @@ import { IEditorGroupService } from 'vs/workbench/services/group/common/groupSer import { SyncDescriptor } from 'vs/platform/instantiation/common/descriptors'; import { IInstantiationService, IConstructorSignature0 } from 'vs/platform/instantiation/common/instantiation'; import { RawContextKey } from 'vs/platform/contextkey/common/contextkey'; -import * as editorOptions from "vs/editor/common/config/editorOptions"; +import * as editorOptions from 'vs/editor/common/config/editorOptions'; export const TextCompareEditorVisible = new RawContextKey('textCompareEditorVisible', false); diff --git a/src/vs/workbench/common/editor/rangeDecorations.ts b/src/vs/workbench/common/editor/rangeDecorations.ts index f4ac981f33c..322f0cb7c26 100644 --- a/src/vs/workbench/common/editor/rangeDecorations.ts +++ b/src/vs/workbench/common/editor/rangeDecorations.ts @@ -10,8 +10,8 @@ import * as editorCommon from 'vs/editor/common/editorCommon'; import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService'; import { toResource } from 'vs/workbench/common/editor'; import { isEqual } from 'vs/platform/files/common/files'; -import { IRange } from "vs/editor/common/core/range"; -import { CursorChangeReason, ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { IRange } from 'vs/editor/common/core/range'; +import { CursorChangeReason, ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; export interface IRangeHighlightDecoration { resource: URI; diff --git a/src/vs/workbench/common/editor/untitledEditorInput.ts b/src/vs/workbench/common/editor/untitledEditorInput.ts index 44254d636e4..753220ec1ba 100644 --- a/src/vs/workbench/common/editor/untitledEditorInput.ts +++ b/src/vs/workbench/common/editor/untitledEditorInput.ts @@ -18,7 +18,7 @@ import { IDisposable, dispose } from 'vs/base/common/lifecycle'; import Event, { Emitter } from 'vs/base/common/event'; import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'; import { telemetryURIDescriptor } from 'vs/platform/telemetry/common/telemetryUtils'; -import { IEnvironmentService } from "vs/platform/environment/common/environment"; +import { IEnvironmentService } from 'vs/platform/environment/common/environment'; /** * An editor input to be used for untitled text buffers. diff --git a/src/vs/workbench/parts/backup/common/backupRestorer.ts b/src/vs/workbench/parts/backup/common/backupRestorer.ts index d32647ee465..54d1e832897 100644 --- a/src/vs/workbench/parts/backup/common/backupRestorer.ts +++ b/src/vs/workbench/parts/backup/common/backupRestorer.ts @@ -16,7 +16,7 @@ import { IBackupFileService } from 'vs/workbench/services/backup/common/backup'; import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService'; import { Position, IResourceInput, IUntitledResourceInput } from 'vs/platform/editor/common/editor'; -import { ITextFileService } from "vs/workbench/services/textfile/common/textfiles"; +import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'; export class BackupRestorer implements IWorkbenchContribution { diff --git a/src/vs/workbench/parts/codeEditor/electron-browser/inspectKeybindings.ts b/src/vs/workbench/parts/codeEditor/electron-browser/inspectKeybindings.ts index 8b4002675a4..a37c93ea70f 100644 --- a/src/vs/workbench/parts/codeEditor/electron-browser/inspectKeybindings.ts +++ b/src/vs/workbench/parts/codeEditor/electron-browser/inspectKeybindings.ts @@ -10,7 +10,7 @@ import { editorAction, ServicesAccessor, EditorAction } from 'vs/editor/common/e import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'; import { WorkbenchKeybindingService } from 'vs/workbench/services/keybinding/electron-browser/keybindingService'; import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService'; -import { IUntitledResourceInput } from "vs/platform/editor/common/editor"; +import { IUntitledResourceInput } from 'vs/platform/editor/common/editor'; @editorAction class InspectKeyMap extends EditorAction { diff --git a/src/vs/workbench/parts/codeEditor/electron-browser/toggleWordWrap.ts b/src/vs/workbench/parts/codeEditor/electron-browser/toggleWordWrap.ts index c19b55403cd..bc787dc947d 100644 --- a/src/vs/workbench/parts/codeEditor/electron-browser/toggleWordWrap.ts +++ b/src/vs/workbench/parts/codeEditor/electron-browser/toggleWordWrap.ts @@ -18,7 +18,7 @@ import { Disposable } from 'vs/base/common/lifecycle'; import { IMessageService } from 'vs/platform/message/common/message'; import Severity from 'vs/base/common/severity'; import URI from 'vs/base/common/uri'; -import { InternalEditorOptions } from "vs/editor/common/config/editorOptions"; +import { InternalEditorOptions } from 'vs/editor/common/config/editorOptions'; const transientWordWrapState = 'transientWordWrapState'; const isWordWrapMinifiedKey = 'isWordWrapMinified'; diff --git a/src/vs/workbench/parts/debug/browser/debugActionItems.ts b/src/vs/workbench/parts/debug/browser/debugActionItems.ts index 26cfb1a5010..2b8cd8d8350 100644 --- a/src/vs/workbench/parts/debug/browser/debugActionItems.ts +++ b/src/vs/workbench/parts/debug/browser/debugActionItems.ts @@ -16,9 +16,9 @@ import { EventEmitter } from 'vs/base/common/eventEmitter'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { ICommandService } from 'vs/platform/commands/common/commands'; import { IDebugService } from 'vs/workbench/parts/debug/common/debug'; -import { IThemeService } from "vs/platform/theme/common/themeService"; -import { attachSelectBoxStyler } from "vs/platform/theme/common/styler"; -import { SIDE_BAR_BACKGROUND } from "vs/workbench/common/theme"; +import { IThemeService } from 'vs/platform/theme/common/themeService'; +import { attachSelectBoxStyler } from 'vs/platform/theme/common/styler'; +import { SIDE_BAR_BACKGROUND } from 'vs/workbench/common/theme'; const $ = dom.$; diff --git a/src/vs/workbench/parts/debug/browser/debugActionsWidget.ts b/src/vs/workbench/parts/debug/browser/debugActionsWidget.ts index a3f9690c52f..fa86245b2a4 100644 --- a/src/vs/workbench/parts/debug/browser/debugActionsWidget.ts +++ b/src/vs/workbench/parts/debug/browser/debugActionsWidget.ts @@ -26,10 +26,10 @@ import { IConfigurationService } from 'vs/platform/configuration/common/configur import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; import { IMessageService } from 'vs/platform/message/common/message'; import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; -import { Themable } from "vs/workbench/common/theme"; -import { IThemeService } from "vs/platform/theme/common/themeService"; -import { registerColor, highContrastBorder, widgetShadow } from "vs/platform/theme/common/colorRegistry"; -import { localize } from "vs/nls"; +import { Themable } from 'vs/workbench/common/theme'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; +import { registerColor, highContrastBorder, widgetShadow } from 'vs/platform/theme/common/colorRegistry'; +import { localize } from 'vs/nls'; const $ = builder.$; const DEBUG_ACTIONS_WIDGET_POSITION_KEY = 'debug.actionswidgetposition'; diff --git a/src/vs/workbench/parts/debug/browser/debugViewlet.ts b/src/vs/workbench/parts/debug/browser/debugViewlet.ts index 973cd3fcc82..5b3b171fc66 100644 --- a/src/vs/workbench/parts/debug/browser/debugViewlet.ts +++ b/src/vs/workbench/parts/debug/browser/debugViewlet.ts @@ -23,7 +23,7 @@ import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; import { IThemeService } from 'vs/platform/theme/common/themeService'; -import { attachHeaderViewStyler } from "vs/platform/theme/common/styler"; +import { attachHeaderViewStyler } from 'vs/platform/theme/common/styler'; const DEBUG_VIEWS_WEIGHTS = 'debug.viewsweights'; diff --git a/src/vs/workbench/parts/debug/browser/exceptionWidget.ts b/src/vs/workbench/parts/debug/browser/exceptionWidget.ts index 0ceb76a9af1..d4e280e232b 100644 --- a/src/vs/workbench/parts/debug/browser/exceptionWidget.ts +++ b/src/vs/workbench/parts/debug/browser/exceptionWidget.ts @@ -11,9 +11,9 @@ import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; import { IContextViewService } from 'vs/platform/contextview/browser/contextView'; import { IDebugService, IExceptionInfo } from 'vs/workbench/parts/debug/common/debug'; import { RunOnceScheduler } from 'vs/base/common/async'; -import { IThemeService, ITheme } from "vs/platform/theme/common/themeService"; -import { Color } from "vs/base/common/color"; -import { registerColor } from "vs/platform/theme/common/colorRegistry"; +import { IThemeService, ITheme } from 'vs/platform/theme/common/themeService'; +import { Color } from 'vs/base/common/color'; +import { registerColor } from 'vs/platform/theme/common/colorRegistry'; const $ = dom.$; // theming diff --git a/src/vs/workbench/parts/debug/electron-browser/debugEditorContribution.ts b/src/vs/workbench/parts/debug/electron-browser/debugEditorContribution.ts index 953d6140a82..71db8f69118 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugEditorContribution.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugEditorContribution.ts @@ -35,8 +35,8 @@ import { BreakpointWidget } from 'vs/workbench/parts/debug/browser/breakpointWid import { ExceptionWidget } from 'vs/workbench/parts/debug/browser/exceptionWidget'; import { FloatingClickWidget } from 'vs/workbench/parts/preferences/browser/preferencesWidgets'; import { IListService } from 'vs/platform/list/browser/listService'; -import { IThemeService } from "vs/platform/theme/common/themeService"; -import { Position } from "vs/editor/common/core/position"; +import { IThemeService } from 'vs/platform/theme/common/themeService'; +import { Position } from 'vs/editor/common/core/position'; const HOVER_DELAY = 300; const LAUNCH_JSON_REGEX = /launch\.json$/; diff --git a/src/vs/workbench/parts/debug/electron-browser/debugHover.ts b/src/vs/workbench/parts/debug/electron-browser/debugHover.ts index dd789f7e8fc..c4f703de4e9 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugHover.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugHover.ts @@ -21,8 +21,8 @@ import { IDebugService, IExpression, IExpressionContainer } from 'vs/workbench/p import { Expression } from 'vs/workbench/parts/debug/common/debugModel'; import { VariablesRenderer, renderExpressionValue, VariablesDataSource } from 'vs/workbench/parts/debug/electron-browser/debugViewer'; import { IListService } from 'vs/platform/list/browser/listService'; -import { attachListStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; const $ = dom.$; const MAX_ELEMENTS_SHOWN = 18; diff --git a/src/vs/workbench/parts/debug/electron-browser/debugViews.ts b/src/vs/workbench/parts/debug/electron-browser/debugViews.ts index ba757caa7fe..cf22f4dcaee 100644 --- a/src/vs/workbench/parts/debug/electron-browser/debugViews.ts +++ b/src/vs/workbench/parts/debug/electron-browser/debugViews.ts @@ -29,8 +29,8 @@ import { IMessageService } from 'vs/platform/message/common/message'; import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'; import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IListService } from 'vs/platform/list/browser/listService'; -import { attachListStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; function renderViewTree(container: HTMLElement): HTMLElement { const treeContainer = document.createElement('div'); diff --git a/src/vs/workbench/parts/debug/electron-browser/repl.ts b/src/vs/workbench/parts/debug/electron-browser/repl.ts index 7cddf4e7520..f473819c540 100644 --- a/src/vs/workbench/parts/debug/electron-browser/repl.ts +++ b/src/vs/workbench/parts/debug/electron-browser/repl.ts @@ -41,8 +41,8 @@ import { Panel } from 'vs/workbench/browser/panel'; import { IWorkbenchThemeService } from 'vs/workbench/services/themes/common/workbenchThemeService'; import { IPanelService } from 'vs/workbench/services/panel/common/panelService'; import { IListService } from 'vs/platform/list/browser/listService'; -import { attachListStyler } from "vs/platform/theme/common/styler"; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; const $ = dom.$; diff --git a/src/vs/workbench/parts/emmet/node/editorAccessor.ts b/src/vs/workbench/parts/emmet/node/editorAccessor.ts index b305d4cd339..480bf4e8f64 100644 --- a/src/vs/workbench/parts/emmet/node/editorAccessor.ts +++ b/src/vs/workbench/parts/emmet/node/editorAccessor.ts @@ -11,7 +11,7 @@ import snippets = require('vs/editor/contrib/snippet/common/snippet'); import { Range } from 'vs/editor/common/core/range'; import { SnippetController } from 'vs/editor/contrib/snippet/common/snippetController'; import { LanguageId, LanguageIdentifier } from 'vs/editor/common/modes'; -import { Position } from "vs/editor/common/core/position"; +import { Position } from 'vs/editor/common/core/position'; import emmet = require('emmet'); diff --git a/src/vs/workbench/parts/explorers/browser/treeExplorerViewlet.ts b/src/vs/workbench/parts/explorers/browser/treeExplorerViewlet.ts index cd807a4177a..856261d3172 100644 --- a/src/vs/workbench/parts/explorers/browser/treeExplorerViewlet.ts +++ b/src/vs/workbench/parts/explorers/browser/treeExplorerViewlet.ts @@ -14,7 +14,7 @@ import { IInstantiationService } from 'vs/platform/instantiation/common/instanti import { TreeExplorerView } from 'vs/workbench/parts/explorers/browser/views/treeExplorerView'; import { TreeExplorerViewletState } from 'vs/workbench/parts/explorers/browser/views/treeExplorerViewer'; import { IThemeService } from 'vs/platform/theme/common/themeService'; -import { attachHeaderViewStyler } from "vs/platform/theme/common/styler"; +import { attachHeaderViewStyler } from 'vs/platform/theme/common/styler'; export class TreeExplorerViewlet extends Viewlet { diff --git a/src/vs/workbench/parts/explorers/browser/views/treeExplorerView.ts b/src/vs/workbench/parts/explorers/browser/views/treeExplorerView.ts index 314e2ddae07..332041abe84 100644 --- a/src/vs/workbench/parts/explorers/browser/views/treeExplorerView.ts +++ b/src/vs/workbench/parts/explorers/browser/views/treeExplorerView.ts @@ -23,8 +23,8 @@ import { Tree } from 'vs/base/parts/tree/browser/treeImpl'; import { TreeExplorerViewletState, TreeDataSource, TreeRenderer, TreeController } from 'vs/workbench/parts/explorers/browser/views/treeExplorerViewer'; import { TreeExplorerMenus } from 'vs/workbench/parts/explorers/browser/treeExplorerMenus'; import { RefreshViewExplorerAction } from 'vs/workbench/parts/explorers/browser/treeExplorerActions'; -import { attachListStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; import { createActionItem } from 'vs/platform/actions/browser/menuItemActionItem'; export class TreeExplorerView extends CollapsibleViewletView { diff --git a/src/vs/workbench/parts/extensions/browser/extensionEditor.ts b/src/vs/workbench/parts/extensions/browser/extensionEditor.ts index a7a29420be1..f6ff2ad5dd9 100644 --- a/src/vs/workbench/parts/extensions/browser/extensionEditor.ts +++ b/src/vs/workbench/parts/extensions/browser/extensionEditor.ts @@ -46,9 +46,9 @@ import { Tree } from 'vs/base/parts/tree/browser/treeImpl'; import { Position } from 'vs/platform/editor/common/editor'; import { IListService } from 'vs/platform/list/browser/listService'; import { IPartService, Parts } from 'vs/workbench/services/part/common/partService'; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { IThemeService } from 'vs/platform/theme/common/themeService'; import { KeybindingLabel } from 'vs/base/browser/ui/keybindingLabel/keybindingLabel'; -import { attachListStyler } from "vs/platform/theme/common/styler"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; function renderBody(body: string): string { const nonce = new Date().getTime() + '' + new Date().getMilliseconds(); diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.ts b/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.ts index 1f70672b6c7..f7102ec0601 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.ts @@ -15,8 +15,8 @@ import { IMessageService } from 'vs/platform/message/common/message'; import { IEnvironmentService } from 'vs/platform/environment/common/environment'; import { remote } from 'electron'; import { IWindowsService } from 'vs/platform/windows/common/windows'; -import { IFileService } from "vs/platform/files/common/files"; -import URI from "vs/base/common/uri"; +import { IFileService } from 'vs/platform/files/common/files'; +import URI from 'vs/base/common/uri'; const dialog = remote.dialog; diff --git a/src/vs/workbench/parts/extensions/electron-browser/extensionsViewlet.ts b/src/vs/workbench/parts/extensions/electron-browser/extensionsViewlet.ts index 50d12bde4b0..0fb3d19a451 100644 --- a/src/vs/workbench/parts/extensions/electron-browser/extensionsViewlet.ts +++ b/src/vs/workbench/parts/extensions/electron-browser/extensionsViewlet.ts @@ -51,7 +51,7 @@ import { IExtensionService } from 'vs/platform/extensions/common/extensions'; import { IModeService } from 'vs/editor/common/services/modeService'; import { IThemeService } from 'vs/platform/theme/common/themeService'; import { inputForeground, inputBackground, highContrastBorder } from 'vs/platform/theme/common/colorRegistry'; -import { attachListStyler } from "vs/platform/theme/common/styler"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; interface SearchInputEvent extends Event { target: HTMLInputElement; diff --git a/src/vs/workbench/parts/feedback/electron-browser/feedbackStatusbarItem.ts b/src/vs/workbench/parts/feedback/electron-browser/feedbackStatusbarItem.ts index 639f34e46ab..4c0f0e51c46 100644 --- a/src/vs/workbench/parts/feedback/electron-browser/feedbackStatusbarItem.ts +++ b/src/vs/workbench/parts/feedback/electron-browser/feedbackStatusbarItem.ts @@ -11,8 +11,8 @@ import { FeedbackDropdown, IFeedback, IFeedbackService } from './feedback'; import { IContextViewService } from 'vs/platform/contextview/browser/contextView'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import product from 'vs/platform/node/product'; -import { Themable, STATUS_BAR_FOREGROUND } from "vs/workbench/common/theme"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { Themable, STATUS_BAR_FOREGROUND } from 'vs/workbench/common/theme'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; class TwitterFeedbackService implements IFeedbackService { diff --git a/src/vs/workbench/parts/files/browser/editors/binaryFileEditor.ts b/src/vs/workbench/parts/files/browser/editors/binaryFileEditor.ts index 564a3e5d874..fe8aacb4f13 100644 --- a/src/vs/workbench/parts/files/browser/editors/binaryFileEditor.ts +++ b/src/vs/workbench/parts/files/browser/editors/binaryFileEditor.ts @@ -9,7 +9,7 @@ import { BaseBinaryResourceEditor } from 'vs/workbench/browser/parts/editor/bina import { BINARY_FILE_EDITOR_ID } from 'vs/workbench/parts/files/common/files'; import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { IThemeService } from 'vs/platform/theme/common/themeService'; -import { IWindowsService } from "vs/platform/windows/common/windows"; +import { IWindowsService } from 'vs/platform/windows/common/windows'; /** * An implementation of editor for binary files like images. diff --git a/src/vs/workbench/parts/files/browser/explorerViewlet.ts b/src/vs/workbench/parts/files/browser/explorerViewlet.ts index 00c1452e19e..e32cb7f8843 100644 --- a/src/vs/workbench/parts/files/browser/explorerViewlet.ts +++ b/src/vs/workbench/parts/files/browser/explorerViewlet.ts @@ -31,7 +31,7 @@ import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/edi import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IThemeService } from 'vs/platform/theme/common/themeService'; -import { attachHeaderViewStyler } from "vs/platform/theme/common/styler"; +import { attachHeaderViewStyler } from 'vs/platform/theme/common/styler'; export class ExplorerViewlet extends Viewlet { private viewletContainer: Builder; diff --git a/src/vs/workbench/parts/files/browser/fileActions.ts b/src/vs/workbench/parts/files/browser/fileActions.ts index 42828e08516..ede08115230 100644 --- a/src/vs/workbench/parts/files/browser/fileActions.ts +++ b/src/vs/workbench/parts/files/browser/fileActions.ts @@ -47,7 +47,7 @@ import { IBackupFileService } from 'vs/workbench/services/backup/common/backup'; import { IWindowsService, IWindowService } from 'vs/platform/windows/common/windows'; import { withFocussedFilesExplorer, revealInOSCommand, revealInExplorerCommand, copyPathCommand } from 'vs/workbench/parts/files/browser/fileCommands'; import { ITelemetryData } from 'vs/platform/telemetry/common/telemetry'; -import { IEnvironmentService } from "vs/platform/environment/common/environment"; +import { IEnvironmentService } from 'vs/platform/environment/common/environment'; export interface IEditableData { action: IAction; diff --git a/src/vs/workbench/parts/files/browser/saveErrorHandler.ts b/src/vs/workbench/parts/files/browser/saveErrorHandler.ts index 6eff064a5ec..dca5ccb26c1 100644 --- a/src/vs/workbench/parts/files/browser/saveErrorHandler.ts +++ b/src/vs/workbench/parts/files/browser/saveErrorHandler.ts @@ -26,10 +26,10 @@ import { TextFileEditorModel } from 'vs/workbench/services/textfile/common/textF import { ITextModelResolverService, ITextModelContentProvider } from 'vs/editor/common/services/resolverService'; import { IModel } from 'vs/editor/common/editorCommon'; import { ResourceMap } from 'vs/base/common/map'; -import { IEditorGroupService } from "vs/workbench/services/group/common/groupService"; -import { DiffEditorInput } from "vs/workbench/common/editor/diffEditorInput"; -import { ResourceEditorInput } from "vs/workbench/common/editor/resourceEditorInput"; -import { IContextKeyService, IContextKey, RawContextKey } from "vs/platform/contextkey/common/contextkey"; +import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; +import { DiffEditorInput } from 'vs/workbench/common/editor/diffEditorInput'; +import { ResourceEditorInput } from 'vs/workbench/common/editor/resourceEditorInput'; +import { IContextKeyService, IContextKey, RawContextKey } from 'vs/platform/contextkey/common/contextkey'; export const CONFLICT_RESOLUTION_CONTEXT = 'saveConflictResolutionContext'; export const CONFLICT_RESOLUTION_SCHEME = 'conflictResolution'; diff --git a/src/vs/workbench/parts/files/browser/views/emptyView.ts b/src/vs/workbench/parts/files/browser/views/emptyView.ts index 510fb8eab7b..41c0f5f7bbd 100644 --- a/src/vs/workbench/parts/files/browser/views/emptyView.ts +++ b/src/vs/workbench/parts/files/browser/views/emptyView.ts @@ -16,8 +16,8 @@ import { IActionItem } from 'vs/base/browser/ui/actionbar/actionbar'; import { CollapsibleView } from 'vs/base/browser/ui/splitview/splitview'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { OpenFolderAction, OpenFileFolderAction } from 'vs/workbench/browser/actions/fileActions'; -import { attachButtonStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachButtonStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; export class EmptyView extends CollapsibleView { private openFolderButton: Button; diff --git a/src/vs/workbench/parts/files/browser/views/explorerView.ts b/src/vs/workbench/parts/files/browser/views/explorerView.ts index 3a5216aff96..a9930687411 100644 --- a/src/vs/workbench/parts/files/browser/views/explorerView.ts +++ b/src/vs/workbench/parts/files/browser/views/explorerView.ts @@ -41,8 +41,8 @@ import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/c import { ResourceContextKey } from 'vs/workbench/common/resourceContextKey'; import { IWorkbenchThemeService, IFileIconTheme } from 'vs/workbench/services/themes/common/workbenchThemeService'; import { isLinux } from 'vs/base/common/platform'; -import { IEnvironmentService } from "vs/platform/environment/common/environment"; -import { attachListStyler } from "vs/platform/theme/common/styler"; +import { IEnvironmentService } from 'vs/platform/environment/common/environment'; +import { attachListStyler } from 'vs/platform/theme/common/styler'; export class ExplorerView extends CollapsibleViewletView { diff --git a/src/vs/workbench/parts/files/browser/views/openEditorsView.ts b/src/vs/workbench/parts/files/browser/views/openEditorsView.ts index 6d9e15223d2..b6f1e2db772 100644 --- a/src/vs/workbench/parts/files/browser/views/openEditorsView.ts +++ b/src/vs/workbench/parts/files/browser/views/openEditorsView.ts @@ -31,8 +31,8 @@ import { ToggleEditorLayoutAction } from 'vs/workbench/browser/actions/toggleEdi import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IListService } from 'vs/platform/list/browser/listService'; import { EditorGroup } from 'vs/workbench/common/editor/editorStacksModel'; -import { attachListStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; const $ = dom.$; diff --git a/src/vs/workbench/parts/files/common/editors/fileEditorInput.ts b/src/vs/workbench/parts/files/common/editors/fileEditorInput.ts index 4750e311f89..2409a85a811 100644 --- a/src/vs/workbench/parts/files/common/editors/fileEditorInput.ts +++ b/src/vs/workbench/parts/files/common/editors/fileEditorInput.ts @@ -21,7 +21,7 @@ import { IDisposable, dispose, IReference } from 'vs/base/common/lifecycle'; import { telemetryURIDescriptor } from 'vs/platform/telemetry/common/telemetryUtils'; import { Verbosity } from 'vs/platform/editor/common/editor'; import { IEnvironmentService } from 'vs/platform/environment/common/environment'; -import { ITextModelResolverService } from "vs/editor/common/services/resolverService"; +import { ITextModelResolverService } from 'vs/editor/common/services/resolverService'; /** * A file editor input is the input type for the file editor of file system resources. diff --git a/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts b/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts index 3a2d8f66340..f450854aced 100644 --- a/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts +++ b/src/vs/workbench/parts/files/test/browser/fileEditorInput.test.ts @@ -16,8 +16,8 @@ import { ITextFileService } from 'vs/workbench/services/textfile/common/textfile import { FileOperationResult, IFileOperationResult } from 'vs/platform/files/common/files'; import { TextFileEditorModel } from 'vs/workbench/services/textfile/common/textFileEditorModel'; import { Verbosity } from 'vs/platform/editor/common/editor'; -import { IEditorGroupService } from "vs/workbench/services/group/common/groupService"; -import { IModelService } from "vs/editor/common/services/modelService"; +import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; +import { IModelService } from 'vs/editor/common/services/modelService'; function toResource(path) { return URI.file(join('C:\\', new Buffer(this.test.fullTitle()).toString('base64'), path)); diff --git a/src/vs/workbench/parts/git/browser/views/changes/changesView.ts b/src/vs/workbench/parts/git/browser/views/changes/changesView.ts index 483f7ee261f..6f92d464832 100644 --- a/src/vs/workbench/parts/git/browser/views/changes/changesView.ts +++ b/src/vs/workbench/parts/git/browser/views/changes/changesView.ts @@ -40,8 +40,8 @@ import { KeyCode, KeyMod } from 'vs/base/common/keyCodes'; import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { isEqualOrParent } from 'vs/platform/files/common/files'; -import { attachInputBoxStyler, attachListStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachInputBoxStyler, attachListStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; import IGitService = git.IGitService; diff --git a/src/vs/workbench/parts/git/browser/views/empty/emptyView.ts b/src/vs/workbench/parts/git/browser/views/empty/emptyView.ts index ae554e66dfa..730837e4a38 100644 --- a/src/vs/workbench/parts/git/browser/views/empty/emptyView.ts +++ b/src/vs/workbench/parts/git/browser/views/empty/emptyView.ts @@ -21,8 +21,8 @@ import { IFileService } from 'vs/platform/files/common/files'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { IMessageService } from 'vs/platform/message/common/message'; import { IGitService } from 'vs/workbench/parts/git/common/git'; -import { attachButtonStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachButtonStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; var $ = Builder.$; diff --git a/src/vs/workbench/parts/git/browser/views/huge/hugeView.ts b/src/vs/workbench/parts/git/browser/views/huge/hugeView.ts index 12439642a7d..7e6173e8422 100644 --- a/src/vs/workbench/parts/git/browser/views/huge/hugeView.ts +++ b/src/vs/workbench/parts/git/browser/views/huge/hugeView.ts @@ -16,8 +16,8 @@ import * as dom from 'vs/base/browser/dom'; import { IGitService } from 'vs/workbench/parts/git/common/git'; import { onUnexpectedError } from 'vs/base/common/errors'; import { Button } from 'vs/base/browser/ui/button/button'; -import { attachButtonStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachButtonStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; const $ = dom.$; diff --git a/src/vs/workbench/parts/git/browser/views/noworkspace/noworkspaceView.ts b/src/vs/workbench/parts/git/browser/views/noworkspace/noworkspaceView.ts index 71588fb4a11..a75f8f249c6 100644 --- a/src/vs/workbench/parts/git/browser/views/noworkspace/noworkspaceView.ts +++ b/src/vs/workbench/parts/git/browser/views/noworkspace/noworkspaceView.ts @@ -17,8 +17,8 @@ import { Button } from 'vs/base/browser/ui/button/button'; import { IActionRunner, IAction } from 'vs/base/common/actions'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { OpenFolderAction, OpenFileFolderAction } from 'vs/workbench/browser/actions/fileActions'; -import { attachButtonStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachButtonStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; const $ = builder.$; export class NoWorkspaceView diff --git a/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts b/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts index 321f19032f3..f310cdcb4d1 100644 --- a/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts +++ b/src/vs/workbench/parts/html/browser/htmlPreviewPart.ts @@ -18,7 +18,7 @@ import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; import { BaseTextEditorModel } from 'vs/workbench/common/editor/textEditorModel'; import { HtmlInput } from 'vs/workbench/parts/html/common/htmlInput'; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { IThemeService } from 'vs/platform/theme/common/themeService'; import { IOpenerService } from 'vs/platform/opener/common/opener'; import { ITextModelResolverService, ITextEditorModel } from 'vs/editor/common/services/resolverService'; import { Parts, IPartService } from 'vs/workbench/services/part/common/partService'; diff --git a/src/vs/workbench/parts/html/browser/webview.ts b/src/vs/workbench/parts/html/browser/webview.ts index 3d00deffa9a..799ca78bef0 100644 --- a/src/vs/workbench/parts/html/browser/webview.ts +++ b/src/vs/workbench/parts/html/browser/webview.ts @@ -14,7 +14,7 @@ import { addDisposableListener, addClass } from 'vs/base/browser/dom'; import { CommandsRegistry } from 'vs/platform/commands/common/commands'; import { MenuRegistry } from 'vs/platform/actions/common/actions'; import { editorBackground, editorForeground } from 'vs/platform/theme/common/colorRegistry'; -import { ITheme, LIGHT, DARK } from "vs/platform/theme/common/themeService"; +import { ITheme, LIGHT, DARK } from 'vs/platform/theme/common/themeService'; declare interface WebviewElement extends HTMLElement { src: string; diff --git a/src/vs/workbench/parts/markers/browser/markersPanel.ts b/src/vs/workbench/parts/markers/browser/markersPanel.ts index bca4e288e30..615851f727f 100644 --- a/src/vs/workbench/parts/markers/browser/markersPanel.ts +++ b/src/vs/workbench/parts/markers/browser/markersPanel.ts @@ -39,7 +39,7 @@ import { IThemeService } from 'vs/platform/theme/common/themeService'; import { ICommonCodeEditor } from 'vs/editor/common/editorCommon'; import FileResultsNavigation from 'vs/workbench/browser/fileResultsNavigation'; import { debounceEvent } from 'vs/base/common/event'; -import { attachListStyler } from "vs/platform/theme/common/styler"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; export class MarkersPanel extends Panel { diff --git a/src/vs/workbench/parts/output/browser/outputActions.ts b/src/vs/workbench/parts/output/browser/outputActions.ts index 3c4bdd1bb1a..b7e0927a94b 100644 --- a/src/vs/workbench/parts/output/browser/outputActions.ts +++ b/src/vs/workbench/parts/output/browser/outputActions.ts @@ -13,8 +13,8 @@ import { IPartService } from 'vs/workbench/services/part/common/partService'; import { IPanelService } from 'vs/workbench/services/panel/common/panelService'; import { TogglePanelAction } from 'vs/workbench/browser/panel'; import { IDisposable, dispose } from 'vs/base/common/lifecycle'; -import { attachSelectBoxStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachSelectBoxStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; export class ToggleOutputAction extends TogglePanelAction { diff --git a/src/vs/workbench/parts/preferences/browser/keybindingsEditor.ts b/src/vs/workbench/parts/preferences/browser/keybindingsEditor.ts index 8927996776c..2b8adf6502f 100644 --- a/src/vs/workbench/parts/preferences/browser/keybindingsEditor.ts +++ b/src/vs/workbench/parts/preferences/browser/keybindingsEditor.ts @@ -38,7 +38,7 @@ import { IContextKeyService, IContextKey } from 'vs/platform/contextkey/common/c import { IChoiceService, IMessageService, Severity } from 'vs/platform/message/common/message'; import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import { KeyCode, ResolvedKeybinding } from 'vs/base/common/keyCodes'; -import { attachListStyler } from "vs/platform/theme/common/styler"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; let $ = DOM.$; diff --git a/src/vs/workbench/parts/preferences/browser/preferencesEditor.ts b/src/vs/workbench/parts/preferences/browser/preferencesEditor.ts index bb414636310..9d2702ff6bc 100644 --- a/src/vs/workbench/parts/preferences/browser/preferencesEditor.ts +++ b/src/vs/workbench/parts/preferences/browser/preferencesEditor.ts @@ -51,8 +51,8 @@ import { IEditorGroupService } from 'vs/workbench/services/group/common/groupSer import { FoldingController } from 'vs/editor/contrib/folding/browser/folding'; import { FindController } from 'vs/editor/contrib/find/browser/find'; import { SelectionHighlighter } from 'vs/editor/contrib/find/common/findController'; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; -import { KeybindingsRegistry } from "vs/platform/keybinding/common/keybindingsRegistry"; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; +import { KeybindingsRegistry } from 'vs/platform/keybinding/common/keybindingsRegistry'; export class PreferencesEditorInput extends SideBySideEditorInput { public static ID: string = 'workbench.editorinputs.preferencesEditorInput'; diff --git a/src/vs/workbench/parts/preferences/browser/preferencesRenderers.ts b/src/vs/workbench/parts/preferences/browser/preferencesRenderers.ts index 9eac268f0e3..ef2c5cbe388 100644 --- a/src/vs/workbench/parts/preferences/browser/preferencesRenderers.ts +++ b/src/vs/workbench/parts/preferences/browser/preferencesRenderers.ts @@ -31,7 +31,7 @@ import { IMarkerService, IMarkerData } from 'vs/platform/markers/common/markers' import { IWorkspaceConfigurationService } from 'vs/workbench/services/configuration/common/configuration'; import { IMessageService, Severity } from 'vs/platform/message/common/message'; import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService'; -import { ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; export interface IPreferencesRenderer extends IDisposable { preferencesModel: IPreferencesEditorModel; diff --git a/src/vs/workbench/parts/preferences/browser/preferencesWidgets.ts b/src/vs/workbench/parts/preferences/browser/preferencesWidgets.ts index 74d0b857f8e..26e55c992fa 100644 --- a/src/vs/workbench/parts/preferences/browser/preferencesWidgets.ts +++ b/src/vs/workbench/parts/preferences/browser/preferencesWidgets.ts @@ -25,8 +25,8 @@ import { ActionsOrientation, ActionBar } from 'vs/base/browser/ui/actionbar/acti import { Action } from 'vs/base/common/actions'; import { attachInputBoxStyler } from 'vs/platform/theme/common/styler'; import { IThemeService } from 'vs/platform/theme/common/themeService'; -import { Position } from "vs/editor/common/core/position"; -import { ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { Position } from 'vs/editor/common/core/position'; +import { ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; export class SettingsGroupTitleWidget extends Widget implements IViewZone { diff --git a/src/vs/workbench/parts/preferences/common/preferences.ts b/src/vs/workbench/parts/preferences/common/preferences.ts index 8cc08eed7eb..5465f7241d5 100644 --- a/src/vs/workbench/parts/preferences/common/preferences.ts +++ b/src/vs/workbench/parts/preferences/common/preferences.ts @@ -10,7 +10,7 @@ import { createDecorator } from 'vs/platform/instantiation/common/instantiation' import { RawContextKey } from 'vs/platform/contextkey/common/contextkey'; import { IEditor } from 'vs/platform/editor/common/editor'; import { IKeybindingItemEntry } from 'vs/workbench/parts/preferences/common/keybindingsEditorModel'; -import { IRange } from "vs/editor/common/core/range"; +import { IRange } from 'vs/editor/common/core/range'; export interface ISettingsGroup { id: string; diff --git a/src/vs/workbench/parts/preferences/common/preferencesModels.ts b/src/vs/workbench/parts/preferences/common/preferencesModels.ts index 3a56914b5a3..26a19561444 100644 --- a/src/vs/workbench/parts/preferences/common/preferencesModels.ts +++ b/src/vs/workbench/parts/preferences/common/preferencesModels.ts @@ -21,7 +21,7 @@ import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding'; import { ConfigurationTarget } from 'vs/workbench/services/configuration/common/configurationEditing'; import { IMatch, or, matchesContiguousSubString, matchesPrefix, matchesCamelCase, matchesWords } from 'vs/base/common/filters'; import { ITextEditorModel } from 'vs/editor/common/services/resolverService'; -import { IRange } from "vs/editor/common/core/range"; +import { IRange } from 'vs/editor/common/core/range'; class SettingMatches { diff --git a/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.ts b/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.ts index 3c246cf2110..cdbb56664c9 100644 --- a/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.ts +++ b/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.ts @@ -17,7 +17,7 @@ import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/edi import { Position, IEditorInput, ITextEditorOptions } from 'vs/platform/editor/common/editor'; import { IQuickOpenService } from 'vs/platform/quickOpen/common/quickOpen'; import { getCodeEditor } from 'vs/editor/common/services/codeEditorService'; -import { IRange } from "vs/editor/common/core/range"; +import { IRange } from 'vs/editor/common/core/range'; export const GOTO_LINE_PREFIX = ':'; diff --git a/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.ts b/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.ts index 57374f401d0..3bb8f187bc5 100644 --- a/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.ts +++ b/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.ts @@ -23,7 +23,7 @@ import { Position, IEditorInput, ITextEditorOptions } from 'vs/platform/editor/c import { getDocumentSymbols } from 'vs/editor/contrib/quickOpen/common/quickOpen'; import { DocumentSymbolProviderRegistry, SymbolInformation, symbolKindToCssClass } from 'vs/editor/common/modes'; import { getCodeEditor } from 'vs/editor/common/services/codeEditorService'; -import { IRange } from "vs/editor/common/core/range"; +import { IRange } from 'vs/editor/common/core/range'; export const GOTO_SYMBOL_PREFIX = '@'; export const SCOPE_PREFIX = ':'; diff --git a/src/vs/workbench/parts/relauncher/electron-browser/relauncher.contribution.ts b/src/vs/workbench/parts/relauncher/electron-browser/relauncher.contribution.ts index 503693bdfad..a4a4b1b9f8c 100644 --- a/src/vs/workbench/parts/relauncher/electron-browser/relauncher.contribution.ts +++ b/src/vs/workbench/parts/relauncher/electron-browser/relauncher.contribution.ts @@ -10,11 +10,11 @@ import { IWorkbenchContributionsRegistry, IWorkbenchContribution, Extensions as import { Registry } from 'vs/platform/platform'; import { IMessageService } from 'vs/platform/message/common/message'; import { IPreferencesService } from 'vs/workbench/parts/preferences/common/preferences'; -import { IWindowsService, IWindowService } from "vs/platform/windows/common/windows"; -import { IConfigurationService } from "vs/platform/configuration/common/configuration"; +import { IWindowsService, IWindowService } from 'vs/platform/windows/common/windows'; +import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { IWindowConfiguration } from "vs/workbench/electron-browser/common"; -import { localize } from "vs/nls"; -import { IEnvironmentService } from "vs/platform/environment/common/environment"; +import { localize } from 'vs/nls'; +import { IEnvironmentService } from 'vs/platform/environment/common/environment'; interface IConfiguration extends IWindowConfiguration { update: { channel: string; }; diff --git a/src/vs/workbench/parts/scm/electron-browser/scmViewlet.ts b/src/vs/workbench/parts/scm/electron-browser/scmViewlet.ts index 69ff07137a0..ad34b252a7c 100644 --- a/src/vs/workbench/parts/scm/electron-browser/scmViewlet.ts +++ b/src/vs/workbench/parts/scm/electron-browser/scmViewlet.ts @@ -37,7 +37,7 @@ import { IAction, IActionItem, ActionRunner } from 'vs/base/common/actions'; import { MenuItemActionItem } from 'vs/platform/actions/browser/menuItemActionItem'; import { SCMMenus } from './scmMenus'; import { ActionBar, IActionItemProvider } from 'vs/base/browser/ui/actionbar/actionbar'; -import { IThemeService, LIGHT } from "vs/platform/theme/common/themeService"; +import { IThemeService, LIGHT } from 'vs/platform/theme/common/themeService'; import { InputBox } from 'vs/base/browser/ui/inputbox/inputBox'; import { IModelService } from 'vs/editor/common/services/modelService'; import { comparePaths } from 'vs/base/common/comparers'; diff --git a/src/vs/workbench/parts/search/browser/openAnythingHandler.ts b/src/vs/workbench/parts/search/browser/openAnythingHandler.ts index 123f5b3203d..cb6117d44bc 100644 --- a/src/vs/workbench/parts/search/browser/openAnythingHandler.ts +++ b/src/vs/workbench/parts/search/browser/openAnythingHandler.ts @@ -77,7 +77,7 @@ interface ITelemetryData { // OpenSymbolHandler is used from an extension and must be in the main bundle file so it can load export import OpenSymbolHandler = openSymbolHandler.OpenSymbolHandler; -import { IRange } from "vs/editor/common/core/range"; +import { IRange } from 'vs/editor/common/core/range'; export class OpenAnythingHandler extends QuickOpenHandler { diff --git a/src/vs/workbench/parts/search/browser/openFileHandler.ts b/src/vs/workbench/parts/search/browser/openFileHandler.ts index ff5ab3db4da..aa132bfcf4a 100644 --- a/src/vs/workbench/parts/search/browser/openFileHandler.ts +++ b/src/vs/workbench/parts/search/browser/openFileHandler.ts @@ -29,8 +29,8 @@ import { IConfigurationService } from 'vs/platform/configuration/common/configur import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { IQueryOptions, ISearchService, ISearchStats, ISearchQuery } from 'vs/platform/search/common/search'; import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; -import { IEnvironmentService } from "vs/platform/environment/common/environment"; -import { IRange } from "vs/editor/common/core/range"; +import { IEnvironmentService } from 'vs/platform/environment/common/environment'; +import { IRange } from 'vs/editor/common/core/range'; export class FileQuickOpenModel extends QuickOpenModel { diff --git a/src/vs/workbench/parts/search/browser/openSymbolHandler.ts b/src/vs/workbench/parts/search/browser/openSymbolHandler.ts index 27f180ea3d8..842c9461c05 100644 --- a/src/vs/workbench/parts/search/browser/openSymbolHandler.ts +++ b/src/vs/workbench/parts/search/browser/openSymbolHandler.ts @@ -24,7 +24,7 @@ import { IInstantiationService } from 'vs/platform/instantiation/common/instanti import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { IWorkspaceSymbolProvider, getWorkspaceSymbols } from 'vs/workbench/parts/search/common/search'; -import { IEnvironmentService } from "vs/platform/environment/common/environment"; +import { IEnvironmentService } from 'vs/platform/environment/common/environment'; class SymbolEntry extends EditorQuickOpenEntry { diff --git a/src/vs/workbench/parts/search/browser/searchViewlet.ts b/src/vs/workbench/parts/search/browser/searchViewlet.ts index 66630da7639..4d12455d04f 100644 --- a/src/vs/workbench/parts/search/browser/searchViewlet.ts +++ b/src/vs/workbench/parts/search/browser/searchViewlet.ts @@ -59,9 +59,9 @@ import { IListService } from 'vs/platform/list/browser/listService'; import { IThemeService, ITheme, ICssStyleCollector, registerThemingParticipant } from 'vs/platform/theme/common/themeService'; import { editorFindMatchHighlight } from 'vs/platform/theme/common/colorRegistry'; import FileResultsNavigation from 'vs/workbench/browser/fileResultsNavigation'; -import { attachListStyler } from "vs/platform/theme/common/styler"; +import { attachListStyler } from 'vs/platform/theme/common/styler'; import { IOutputService } from 'vs/workbench/parts/output/common/output'; -import { Color } from "vs/base/common/color"; +import { Color } from 'vs/base/common/color'; export class SearchViewlet extends Viewlet { diff --git a/src/vs/workbench/parts/search/browser/searchWidget.ts b/src/vs/workbench/parts/search/browser/searchWidget.ts index ecc5658ac00..69725a9ba8e 100644 --- a/src/vs/workbench/parts/search/browser/searchWidget.ts +++ b/src/vs/workbench/parts/search/browser/searchWidget.ts @@ -29,7 +29,7 @@ import { HistoryNavigator } from 'vs/base/common/history'; import * as Constants from 'vs/workbench/parts/search/common/constants'; import { attachInputBoxStyler, attachFindInputBoxStyler, attachButtonStyler } from 'vs/platform/theme/common/styler'; import { IThemeService } from 'vs/platform/theme/common/themeService'; -import { SIDE_BAR_BACKGROUND } from "vs/workbench/common/theme"; +import { SIDE_BAR_BACKGROUND } from 'vs/workbench/common/theme'; export interface ISearchWidgetOptions { value?: string; diff --git a/src/vs/workbench/parts/snippets/electron-browser/snippetsService.ts b/src/vs/workbench/parts/snippets/electron-browser/snippetsService.ts index 7e09223592c..dacd436e194 100644 --- a/src/vs/workbench/parts/snippets/electron-browser/snippetsService.ts +++ b/src/vs/workbench/parts/snippets/electron-browser/snippetsService.ts @@ -12,7 +12,7 @@ import { createDecorator } from 'vs/platform/instantiation/common/instantiation' import { registerSingleton } from 'vs/platform/instantiation/common/extensions'; import { setSnippetSuggestSupport } from 'vs/editor/contrib/suggest/browser/suggest'; import { IModeService } from 'vs/editor/common/services/modeService'; -import { Position } from "vs/editor/common/core/position"; +import { Position } from 'vs/editor/common/core/position'; export const ISnippetsService = createDecorator('snippetService'); diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts index 8a389396b85..fee150f26af 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts @@ -1278,8 +1278,8 @@ let schema: IJSONSchema = { import schemaVersion1 from './jsonSchema_v1'; import schemaVersion2 from './jsonSchema_v2'; -import { Themable, STATUS_BAR_FOREGROUND } from "vs/workbench/common/theme"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { Themable, STATUS_BAR_FOREGROUND } from 'vs/workbench/common/theme'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; schema.definitions = { ...schemaVersion1.definitions, ...schemaVersion2.definitions, diff --git a/src/vs/workbench/parts/terminal/electron-browser/terminalActions.ts b/src/vs/workbench/parts/terminal/electron-browser/terminalActions.ts index 85992eacbd6..d790e30fd1c 100644 --- a/src/vs/workbench/parts/terminal/electron-browser/terminalActions.ts +++ b/src/vs/workbench/parts/terminal/electron-browser/terminalActions.ts @@ -15,8 +15,8 @@ import { TogglePanelAction } from 'vs/workbench/browser/panel'; import { IPartService } from 'vs/workbench/services/part/common/partService'; import { IPanelService } from 'vs/workbench/services/panel/common/panelService'; import { IMessageService, Severity } from 'vs/platform/message/common/message'; -import { attachSelectBoxStyler } from "vs/platform/theme/common/styler"; -import { IThemeService } from "vs/platform/theme/common/themeService"; +import { attachSelectBoxStyler } from 'vs/platform/theme/common/styler'; +import { IThemeService } from 'vs/platform/theme/common/themeService'; export class ToggleTerminalAction extends TogglePanelAction { diff --git a/src/vs/workbench/parts/terminal/electron-browser/terminalConfigHelper.ts b/src/vs/workbench/parts/terminal/electron-browser/terminalConfigHelper.ts index 48a0bf30b69..54650531ec0 100644 --- a/src/vs/workbench/parts/terminal/electron-browser/terminalConfigHelper.ts +++ b/src/vs/workbench/parts/terminal/electron-browser/terminalConfigHelper.ts @@ -9,9 +9,9 @@ import { IConfiguration as IEditorConfiguration, DefaultConfig } from 'vs/editor import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { IWorkspaceConfigurationService } from 'vs/workbench/services/configuration/common/configuration'; import { IChoiceService } from 'vs/platform/message/common/message'; -import { IStorageService, StorageScope } from "vs/platform/storage/common/storage"; +import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; import { ITerminalConfiguration, ITerminalConfigHelper, ITerminalFont, IShellLaunchConfig, IS_WORKSPACE_SHELL_ALLOWED_STORAGE_KEY } from 'vs/workbench/parts/terminal/common/terminal'; -import { Severity } from "vs/editor/common/standalone/standaloneBase"; +import { Severity } from 'vs/editor/common/standalone/standaloneBase'; import { TPromise } from 'vs/base/common/winjs.base'; interface IFullTerminalConfiguration { diff --git a/src/vs/workbench/parts/terminal/electron-browser/terminalService.ts b/src/vs/workbench/parts/terminal/electron-browser/terminalService.ts index 52b48b96fdc..691273627f5 100644 --- a/src/vs/workbench/parts/terminal/electron-browser/terminalService.ts +++ b/src/vs/workbench/parts/terminal/electron-browser/terminalService.ts @@ -21,9 +21,9 @@ import { TerminalService as AbstractTerminalService } from 'vs/workbench/parts/t import { TerminalConfigHelper } from 'vs/workbench/parts/terminal/electron-browser/terminalConfigHelper'; import { TerminalInstance } from 'vs/workbench/parts/terminal/electron-browser/terminalInstance'; import { TPromise } from 'vs/base/common/winjs.base'; -import { IChoiceService } from "vs/platform/message/common/message"; -import { Severity } from "vs/editor/common/standalone/standaloneBase"; -import { IStorageService, StorageScope } from "vs/platform/storage/common/storage"; +import { IChoiceService } from 'vs/platform/message/common/message'; +import { Severity } from 'vs/editor/common/standalone/standaloneBase'; +import { IStorageService, StorageScope } from 'vs/platform/storage/common/storage'; import { TERMINAL_DEFAULT_SHELL_WINDOWS } from "vs/workbench/parts/terminal/electron-browser/terminal"; export class TerminalService extends AbstractTerminalService implements ITerminalService { diff --git a/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts b/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts index a805917a885..b66dcb4352b 100644 --- a/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts +++ b/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts @@ -22,8 +22,8 @@ import { IViewletService } from 'vs/workbench/services/viewlet/browser/viewlet'; import { Delayer } from 'vs/base/common/async'; import { ConfigurationTarget } from 'vs/workbench/services/configuration/common/configurationEditing'; import { IWorkspaceConfigurationService } from 'vs/workbench/services/configuration/common/configuration'; -import { IColorRegistry, Extensions as ColorRegistryExtensions } from "vs/platform/theme/common/colorRegistry"; -import { IWorkbenchEditorService } from "vs/workbench/services/editor/common/editorService"; +import { IColorRegistry, Extensions as ColorRegistryExtensions } from 'vs/platform/theme/common/colorRegistry'; +import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/editorService'; export class SelectColorThemeAction extends Action { diff --git a/src/vs/workbench/parts/welcome/page/electron-browser/welcomePage.ts b/src/vs/workbench/parts/welcome/page/electron-browser/welcomePage.ts index 91c07bb0fd6..8992dda52fa 100644 --- a/src/vs/workbench/parts/welcome/page/electron-browser/welcomePage.ts +++ b/src/vs/workbench/parts/welcome/page/electron-browser/welcomePage.ts @@ -32,7 +32,7 @@ import { IExtensionEnablementService, IExtensionManagementService, IExtensionGal import { used } from 'vs/workbench/parts/welcome/page/electron-browser/vs_code_welcome_page'; import { ILifecycleService } from 'vs/platform/lifecycle/common/lifecycle'; import { IDisposable, dispose } from 'vs/base/common/lifecycle'; -import { tildify } from "vs/base/common/labels"; +import { tildify } from 'vs/base/common/labels'; import { editorBackground } from 'vs/platform/theme/common/colorRegistry'; import { Themable } from 'vs/workbench/common/theme'; import { IThemeService, ITheme } from 'vs/platform/theme/common/themeService'; diff --git a/src/vs/workbench/parts/welcome/walkThrough/electron-browser/walkThroughPart.ts b/src/vs/workbench/parts/welcome/walkThrough/electron-browser/walkThroughPart.ts index 786b1f358a4..1acc0111dd9 100644 --- a/src/vs/workbench/parts/welcome/walkThrough/electron-browser/walkThroughPart.ts +++ b/src/vs/workbench/parts/welcome/walkThrough/electron-browser/walkThroughPart.ts @@ -37,8 +37,8 @@ import SCMPreview from 'vs/workbench/parts/scm/browser/scmPreview'; import { isObject } from 'vs/base/common/types'; import { ICommandService, CommandsRegistry } from 'vs/platform/commands/common/commands'; import { ICodeEditorService } from 'vs/editor/common/services/codeEditorService'; -import { Parts, IPartService } from "vs/workbench/services/part/common/partService"; -import { IEditorOptions } from "vs/editor/common/config/editorOptions"; +import { Parts, IPartService } from 'vs/workbench/services/part/common/partService'; +import { IEditorOptions } from 'vs/editor/common/config/editorOptions'; import { IMessageService, Severity } from 'vs/platform/message/common/message'; export const WALK_THROUGH_FOCUS = new RawContextKey('interactivePlaygroundFocus', false); diff --git a/src/vs/workbench/services/editor/browser/editorService.ts b/src/vs/workbench/services/editor/browser/editorService.ts index 56face1caf8..b7257dd4119 100644 --- a/src/vs/workbench/services/editor/browser/editorService.ts +++ b/src/vs/workbench/services/editor/browser/editorService.ts @@ -21,9 +21,9 @@ import { DiffEditorInput } from 'vs/workbench/common/editor/diffEditorInput'; import { IWorkspaceContextService } from 'vs/platform/workspace/common/workspace'; import nls = require('vs/nls'); import { getPathLabel, IWorkspaceProvider } from 'vs/base/common/labels'; -import { ResourceMap } from "vs/base/common/map"; -import { once } from "vs/base/common/event"; -import { IEnvironmentService } from "vs/platform/environment/common/environment"; +import { ResourceMap } from 'vs/base/common/map'; +import { once } from 'vs/base/common/event'; +import { IEnvironmentService } from 'vs/platform/environment/common/environment'; export interface IEditorPart { openEditor(input?: IEditorInput, options?: IEditorOptions | ITextEditorOptions, sideBySide?: boolean): TPromise; diff --git a/src/vs/workbench/services/editor/test/browser/editorService.test.ts b/src/vs/workbench/services/editor/test/browser/editorService.test.ts index 5e5cb732a12..edf16d9ec26 100644 --- a/src/vs/workbench/services/editor/test/browser/editorService.test.ts +++ b/src/vs/workbench/services/editor/test/browser/editorService.test.ts @@ -17,7 +17,7 @@ import { StringEditorModel } from 'vs/workbench/common/editor/stringEditorModel' import { FileEditorInput } from 'vs/workbench/parts/files/common/editors/fileEditorInput'; import { workbenchInstantiationService, TestThemeService } from 'vs/workbench/test/workbenchTestServices'; import { DelegatingWorkbenchEditorService, WorkbenchEditorService, IEditorPart } from 'vs/workbench/services/editor/browser/editorService'; -import { UntitledEditorInput } from "vs/workbench/common/editor/untitledEditorInput"; +import { UntitledEditorInput } from 'vs/workbench/common/editor/untitledEditorInput'; let activeEditor: BaseEditor = { getSelection: function () { diff --git a/src/vs/workbench/services/history/browser/history.ts b/src/vs/workbench/services/history/browser/history.ts index 422fc3faa8e..b8edd0860b2 100644 --- a/src/vs/workbench/services/history/browser/history.ts +++ b/src/vs/workbench/services/history/browser/history.ts @@ -28,7 +28,7 @@ import { IWindowService } from 'vs/platform/windows/common/windows'; import { getCodeEditor } from 'vs/editor/common/services/codeEditorService'; import { getExcludes, ISearchConfiguration } from 'vs/platform/search/common/search'; import { ParsedExpression, parse, IExpression } from 'vs/base/common/glob'; -import { ICursorPositionChangedEvent } from "vs/editor/common/controller/cursorEvents"; +import { ICursorPositionChangedEvent } from 'vs/editor/common/controller/cursorEvents'; /** * Stores the selection & view state of an editor and allows to compare it to other selection states. diff --git a/src/vs/workbench/services/keybinding/test/macLinuxFallbackKeyboardMapper.test.ts b/src/vs/workbench/services/keybinding/test/macLinuxFallbackKeyboardMapper.test.ts index b71ed9d371e..5c6156521d7 100644 --- a/src/vs/workbench/services/keybinding/test/macLinuxFallbackKeyboardMapper.test.ts +++ b/src/vs/workbench/services/keybinding/test/macLinuxFallbackKeyboardMapper.test.ts @@ -8,7 +8,7 @@ import { KeyMod, KeyCode, createKeybinding, KeyChord, SimpleKeybinding } from 'vs/base/common/keyCodes'; import { OperatingSystem } from 'vs/base/common/platform'; import { IResolvedKeybinding, assertResolveKeybinding, assertResolveKeyboardEvent, assertResolveUserBinding } from 'vs/workbench/services/keybinding/test/keyboardMapperTestUtils'; -import { MacLinuxFallbackKeyboardMapper } from "vs/workbench/services/keybinding/common/macLinuxFallbackKeyboardMapper"; +import { MacLinuxFallbackKeyboardMapper } from 'vs/workbench/services/keybinding/common/macLinuxFallbackKeyboardMapper'; import { ScanCodeBinding, ScanCode } from 'vs/workbench/services/keybinding/common/scanCode'; suite('keyboardMapper - MAC fallback', () => { diff --git a/src/vs/workbench/services/message/browser/messageList.ts b/src/vs/workbench/services/message/browser/messageList.ts index 087c7d34a32..6a8c5cc4aa3 100644 --- a/src/vs/workbench/services/message/browser/messageList.ts +++ b/src/vs/workbench/services/message/browser/messageList.ts @@ -19,12 +19,12 @@ import { Action } from 'vs/base/common/actions'; import htmlRenderer = require('vs/base/browser/htmlContentRenderer'); import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent'; import { KeyCode } from 'vs/base/common/keyCodes'; -import { NOTIFICATIONS_FOREGROUND, NOTIFICATIONS_BACKGROUND } from "vs/workbench/common/theme"; -import { ITelemetryService } from "vs/platform/telemetry/common/telemetry"; -import { registerThemingParticipant } from "vs/platform/theme/common/themeService"; -import { highContrastBorder, buttonBackground, buttonHoverBackground, widgetShadow, errorBorder, warningBorder, infoBorder } from "vs/platform/theme/common/colorRegistry"; -import { IDisposable, dispose } from "vs/base/common/lifecycle"; -import { Color } from "vs/base/common/color"; +import { NOTIFICATIONS_FOREGROUND, NOTIFICATIONS_BACKGROUND } from 'vs/workbench/common/theme'; +import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry'; +import { registerThemingParticipant } from 'vs/platform/theme/common/themeService'; +import { highContrastBorder, buttonBackground, buttonHoverBackground, widgetShadow, errorBorder, warningBorder, infoBorder } from 'vs/platform/theme/common/colorRegistry'; +import { IDisposable, dispose } from 'vs/base/common/lifecycle'; +import { Color } from 'vs/base/common/color'; export enum Severity { Info, diff --git a/src/vs/workbench/services/textmodelResolver/common/textModelResolverService.ts b/src/vs/workbench/services/textmodelResolver/common/textModelResolverService.ts index 2f0e90e0248..5319539ec14 100644 --- a/src/vs/workbench/services/textmodelResolver/common/textModelResolverService.ts +++ b/src/vs/workbench/services/textmodelResolver/common/textModelResolverService.ts @@ -17,7 +17,7 @@ import network = require('vs/base/common/network'); import { ITextModelResolverService, ITextModelContentProvider, ITextEditorModel } from 'vs/editor/common/services/resolverService'; import { IUntitledEditorService } from 'vs/workbench/services/untitled/common/untitledEditorService'; import { UntitledEditorInput } from 'vs/workbench/common/editor/untitledEditorInput'; -import { TextFileEditorModel } from "vs/workbench/services/textfile/common/textFileEditorModel"; +import { TextFileEditorModel } from 'vs/workbench/services/textfile/common/textFileEditorModel'; class ResourceModelCollection extends ReferenceCollection> { diff --git a/src/vs/workbench/services/textmodelResolver/test/textModelResolverService.test.ts b/src/vs/workbench/services/textmodelResolver/test/textModelResolverService.test.ts index 44a56bf3580..97b08098ec5 100644 --- a/src/vs/workbench/services/textmodelResolver/test/textModelResolverService.test.ts +++ b/src/vs/workbench/services/textmodelResolver/test/textModelResolverService.test.ts @@ -21,7 +21,7 @@ import { TextFileEditorModel } from 'vs/workbench/services/textfile/common/textF import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'; import { IUntitledEditorService } from 'vs/workbench/services/untitled/common/untitledEditorService'; import { TextFileEditorModelManager } from 'vs/workbench/services/textfile/common/textFileEditorModelManager'; -import { once } from "vs/base/common/event"; +import { once } from 'vs/base/common/event'; class ServiceAccessor { constructor( diff --git a/src/vs/workbench/services/themes/electron-browser/workbenchThemeService.ts b/src/vs/workbench/services/themes/electron-browser/workbenchThemeService.ts index 3ac9a4128ae..a48ef7f3578 100644 --- a/src/vs/workbench/services/themes/electron-browser/workbenchThemeService.ts +++ b/src/vs/workbench/services/themes/electron-browser/workbenchThemeService.ts @@ -39,7 +39,7 @@ import pfs = require('vs/base/node/pfs'); import colorThemeSchema = require('vs/workbench/services/themes/common/colorThemeSchema'); import fileIconThemeSchema = require('vs/workbench/services/themes/common/fileIconThemeSchema'); import { IDisposable } from 'vs/base/common/lifecycle'; -import { Color } from "vs/base/common/color"; +import { Color } from 'vs/base/common/color'; // implementation diff --git a/src/vs/workbench/test/common/editor/rangeDecorations.test.ts b/src/vs/workbench/test/common/editor/rangeDecorations.test.ts index 0adee2cdf2c..f04f09a97e8 100644 --- a/src/vs/workbench/test/common/editor/rangeDecorations.test.ts +++ b/src/vs/workbench/test/common/editor/rangeDecorations.test.ts @@ -24,7 +24,7 @@ import { Cursor } from 'vs/editor/common/controller/cursor'; import { IConfigurationService } from 'vs/platform/configuration/common/configuration'; import { TestConfigurationService } from 'vs/platform/configuration/test/common/testConfigurationService'; import { ModelServiceImpl } from 'vs/editor/common/services/modelServiceImpl'; -import { CoreCommands } from "vs/editor/common/controller/coreCommands"; +import { CoreCommands } from 'vs/editor/common/controller/coreCommands'; suite('Editor - Range decorations', () => {