From 5cccdbbc8529d400c078206d0103763ceb87a068 Mon Sep 17 00:00:00 2001 From: isidor Date: Fri, 23 Feb 2018 18:43:40 +0100 Subject: [PATCH] searchViewlet.ts -> searchView.ts --- src/vs/workbench/parts/search/browser/searchActions.ts | 2 +- src/vs/workbench/parts/search/browser/searchResultsView.ts | 2 +- .../parts/search/browser/{searchViewlet.ts => searchView.ts} | 0 .../parts/search/electron-browser/search.contribution.ts | 2 +- src/vs/workbench/workbench.main.ts | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename src/vs/workbench/parts/search/browser/{searchViewlet.ts => searchView.ts} (100%) diff --git a/src/vs/workbench/parts/search/browser/searchActions.ts b/src/vs/workbench/parts/search/browser/searchActions.ts index 99a6fc05b14..d06ae84a6a5 100644 --- a/src/vs/workbench/parts/search/browser/searchActions.ts +++ b/src/vs/workbench/parts/search/browser/searchActions.ts @@ -10,7 +10,7 @@ import { Action } from 'vs/base/common/actions'; import { IViewletService } from 'vs/workbench/services/viewlet/browser/viewlet'; import { ITree } from 'vs/base/parts/tree/browser/tree'; import { INavigator } from 'vs/base/common/iterator'; -import { SearchView } from 'vs/workbench/parts/search/browser/searchViewlet'; +import { SearchView } from 'vs/workbench/parts/search/browser/searchView'; import { Match, FileMatch, FileMatchOrMatch, FolderMatch, RenderableMatch } from 'vs/workbench/parts/search/common/searchModel'; import { IReplaceService } from 'vs/workbench/parts/search/common/replace'; import * as Constants from 'vs/workbench/parts/search/common/constants'; diff --git a/src/vs/workbench/parts/search/browser/searchResultsView.ts b/src/vs/workbench/parts/search/browser/searchResultsView.ts index acdb0b26f85..e3857f270b4 100644 --- a/src/vs/workbench/parts/search/browser/searchResultsView.ts +++ b/src/vs/workbench/parts/search/browser/searchResultsView.ts @@ -16,7 +16,7 @@ import { ITree, IDataSource, ISorter, IAccessibilityProvider, IFilter, IRenderer import { Match, SearchResult, FileMatch, FileMatchOrMatch, SearchModel, FolderMatch } from 'vs/workbench/parts/search/common/searchModel'; import { IWorkspaceContextService, WorkbenchState } from 'vs/platform/workspace/common/workspace'; import { Range } from 'vs/editor/common/core/range'; -import { SearchView } from 'vs/workbench/parts/search/browser/searchViewlet'; +import { SearchView } from 'vs/workbench/parts/search/browser/searchView'; import { RemoveAction, ReplaceAllAction, ReplaceAction, ReplaceAllInFolderAction } from 'vs/workbench/parts/search/browser/searchActions'; import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation'; import { attachBadgeStyler } from 'vs/platform/theme/common/styler'; diff --git a/src/vs/workbench/parts/search/browser/searchViewlet.ts b/src/vs/workbench/parts/search/browser/searchView.ts similarity index 100% rename from src/vs/workbench/parts/search/browser/searchViewlet.ts rename to src/vs/workbench/parts/search/browser/searchView.ts diff --git a/src/vs/workbench/parts/search/electron-browser/search.contribution.ts b/src/vs/workbench/parts/search/electron-browser/search.contribution.ts index a2c29a99fb3..14b1022f400 100644 --- a/src/vs/workbench/parts/search/electron-browser/search.contribution.ts +++ b/src/vs/workbench/parts/search/electron-browser/search.contribution.ts @@ -34,7 +34,7 @@ import { ContextKeyExpr } from 'vs/platform/contextkey/common/contextkey'; import { ToggleCaseSensitiveKeybinding, ToggleRegexKeybinding, ToggleWholeWordKeybinding, ShowPreviousFindTermKeybinding, ShowNextFindTermKeybinding } from 'vs/editor/contrib/find/findModel'; import { ISearchWorkbenchService, SearchWorkbenchService } from 'vs/workbench/parts/search/common/searchModel'; import { CommandsRegistry } from 'vs/platform/commands/common/commands'; -import { SearchView } from 'vs/workbench/parts/search/browser/searchViewlet'; +import { SearchView } from 'vs/workbench/parts/search/browser/searchView'; import { defaultQuickOpenContextKey } from 'vs/workbench/browser/parts/quickopen/quickopen'; import { OpenSymbolHandler } from 'vs/workbench/parts/search/browser/openSymbolHandler'; import { OpenAnythingHandler } from 'vs/workbench/parts/search/browser/openAnythingHandler'; diff --git a/src/vs/workbench/workbench.main.ts b/src/vs/workbench/workbench.main.ts index 4142e13fbd3..002fc32062a 100644 --- a/src/vs/workbench/workbench.main.ts +++ b/src/vs/workbench/workbench.main.ts @@ -51,7 +51,7 @@ import 'vs/workbench/parts/stats/node/stats.contribution'; import 'vs/workbench/parts/cache/node/cache.contribution'; import 'vs/workbench/parts/search/electron-browser/search.contribution'; -import 'vs/workbench/parts/search/browser/searchViewlet'; // can be packaged separately +import 'vs/workbench/parts/search/browser/searchView'; // can be packaged separately import 'vs/workbench/parts/search/browser/openAnythingHandler'; // can be packaged separately import 'vs/workbench/parts/scm/electron-browser/scm.contribution';