@theia/file-search 1.45.1 → 1.46.0-next.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,30 +1,30 @@
1
- <div align='center'>
2
-
3
- <br />
4
-
5
- <img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
6
-
7
- <h2>ECLIPSE THEIA - FILE-SEARCH EXTENSION</h2>
8
-
9
- <hr />
10
-
11
- </div>
12
-
13
- ## Description
14
-
15
- The `@theia/file-search` extension adds the command and ability to quickly open any file in a given workspace.
16
-
17
- ## Additional Information
18
-
19
- - [API documentation for `@theia/file-search`](https://eclipse-theia.github.io/theia/docs/next/modules/file_search.html)
20
- - [Theia - GitHub](https://github.com/eclipse-theia/theia)
21
- - [Theia - Website](https://theia-ide.org/)
22
-
23
- ## License
24
-
25
- - [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
26
- - [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
27
-
28
- ## Trademark
29
- "Theia" is a trademark of the Eclipse Foundation
30
- https://www.eclipse.org/theia
1
+ <div align='center'>
2
+
3
+ <br />
4
+
5
+ <img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
6
+
7
+ <h2>ECLIPSE THEIA - FILE-SEARCH EXTENSION</h2>
8
+
9
+ <hr />
10
+
11
+ </div>
12
+
13
+ ## Description
14
+
15
+ The `@theia/file-search` extension adds the command and ability to quickly open any file in a given workspace.
16
+
17
+ ## Additional Information
18
+
19
+ - [API documentation for `@theia/file-search`](https://eclipse-theia.github.io/theia/docs/next/modules/file_search.html)
20
+ - [Theia - GitHub](https://github.com/eclipse-theia/theia)
21
+ - [Theia - Website](https://theia-ide.org/)
22
+
23
+ ## License
24
+
25
+ - [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
26
+ - [一 (Secondary) GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
27
+
28
+ ## Trademark
29
+ "Theia" is a trademark of the Eclipse Foundation
30
+ https://www.eclipse.org/theia
@@ -1,4 +1,4 @@
1
- import { ContainerModule } from '@theia/core/shared/inversify';
2
- declare const _default: ContainerModule;
3
- export default _default;
1
+ import { ContainerModule } from '@theia/core/shared/inversify';
2
+ declare const _default: ContainerModule;
3
+ export default _default;
4
4
  //# sourceMappingURL=file-search-frontend-module.d.ts.map
@@ -1,34 +1,34 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2017 TypeFox and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- const inversify_1 = require("@theia/core/shared/inversify");
19
- const common_1 = require("@theia/core/lib/common");
20
- const browser_1 = require("@theia/core/lib/browser");
21
- const quick_file_open_contribution_1 = require("./quick-file-open-contribution");
22
- const quick_file_open_1 = require("./quick-file-open");
23
- const file_search_service_1 = require("../common/file-search-service");
24
- const quick_access_1 = require("@theia/core/lib/browser/quick-input/quick-access");
25
- exports.default = new inversify_1.ContainerModule((bind) => {
26
- bind(file_search_service_1.FileSearchService).toDynamicValue(ctx => {
27
- const provider = ctx.container.get(browser_1.WebSocketConnectionProvider);
28
- return provider.createProxy(file_search_service_1.fileSearchServicePath);
29
- }).inSingletonScope();
30
- bind(quick_file_open_contribution_1.QuickFileOpenFrontendContribution).toSelf().inSingletonScope();
31
- [common_1.CommandContribution, browser_1.KeybindingContribution, common_1.MenuContribution, quick_access_1.QuickAccessContribution].forEach(serviceIdentifier => bind(serviceIdentifier).toService(quick_file_open_contribution_1.QuickFileOpenFrontendContribution));
32
- bind(quick_file_open_1.QuickFileOpenService).toSelf().inSingletonScope();
33
- });
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2017 TypeFox and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ const inversify_1 = require("@theia/core/shared/inversify");
19
+ const common_1 = require("@theia/core/lib/common");
20
+ const browser_1 = require("@theia/core/lib/browser");
21
+ const quick_file_open_contribution_1 = require("./quick-file-open-contribution");
22
+ const quick_file_open_1 = require("./quick-file-open");
23
+ const file_search_service_1 = require("../common/file-search-service");
24
+ const quick_access_1 = require("@theia/core/lib/browser/quick-input/quick-access");
25
+ exports.default = new inversify_1.ContainerModule((bind) => {
26
+ bind(file_search_service_1.FileSearchService).toDynamicValue(ctx => {
27
+ const provider = ctx.container.get(browser_1.WebSocketConnectionProvider);
28
+ return provider.createProxy(file_search_service_1.fileSearchServicePath);
29
+ }).inSingletonScope();
30
+ bind(quick_file_open_contribution_1.QuickFileOpenFrontendContribution).toSelf().inSingletonScope();
31
+ [common_1.CommandContribution, browser_1.KeybindingContribution, common_1.MenuContribution, quick_access_1.QuickAccessContribution].forEach(serviceIdentifier => bind(serviceIdentifier).toService(quick_file_open_contribution_1.QuickFileOpenFrontendContribution));
32
+ bind(quick_file_open_1.QuickFileOpenService).toSelf().inSingletonScope();
33
+ });
34
34
  //# sourceMappingURL=file-search-frontend-module.js.map
@@ -1,11 +1,11 @@
1
- import { QuickFileOpenService } from './quick-file-open';
2
- import { CommandRegistry, CommandContribution, MenuContribution, MenuModelRegistry } from '@theia/core/lib/common';
3
- import { KeybindingRegistry, KeybindingContribution, QuickAccessContribution } from '@theia/core/lib/browser';
4
- export declare class QuickFileOpenFrontendContribution implements QuickAccessContribution, CommandContribution, KeybindingContribution, MenuContribution {
5
- protected readonly quickFileOpenService: QuickFileOpenService;
6
- registerCommands(commands: CommandRegistry): void;
7
- registerKeybindings(keybindings: KeybindingRegistry): void;
8
- registerMenus(menus: MenuModelRegistry): void;
9
- registerQuickAccessProvider(): void;
10
- }
1
+ import { QuickFileOpenService } from './quick-file-open';
2
+ import { CommandRegistry, CommandContribution, MenuContribution, MenuModelRegistry } from '@theia/core/lib/common';
3
+ import { KeybindingRegistry, KeybindingContribution, QuickAccessContribution } from '@theia/core/lib/browser';
4
+ export declare class QuickFileOpenFrontendContribution implements QuickAccessContribution, CommandContribution, KeybindingContribution, MenuContribution {
5
+ protected readonly quickFileOpenService: QuickFileOpenService;
6
+ registerCommands(commands: CommandRegistry): void;
7
+ registerKeybindings(keybindings: KeybindingRegistry): void;
8
+ registerMenus(menus: MenuModelRegistry): void;
9
+ registerQuickAccessProvider(): void;
10
+ }
11
11
  //# sourceMappingURL=quick-file-open-contribution.d.ts.map
@@ -1,76 +1,76 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2017 TypeFox and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
18
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
19
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
20
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
21
- return c > 3 && r && Object.defineProperty(target, key, r), r;
22
- };
23
- var __metadata = (this && this.__metadata) || function (k, v) {
24
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
25
- };
26
- Object.defineProperty(exports, "__esModule", { value: true });
27
- exports.QuickFileOpenFrontendContribution = void 0;
28
- const inversify_1 = require("@theia/core/shared/inversify");
29
- const uri_1 = require("@theia/core/lib/common/uri");
30
- const quick_file_open_1 = require("./quick-file-open");
31
- const browser_1 = require("@theia/editor/lib/browser");
32
- const nls_1 = require("@theia/core/lib/common/nls");
33
- let QuickFileOpenFrontendContribution = class QuickFileOpenFrontendContribution {
34
- registerCommands(commands) {
35
- commands.registerCommand(quick_file_open_1.quickFileOpen, {
36
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
37
- execute: (...args) => {
38
- let fileURI;
39
- if (args) {
40
- [fileURI] = args;
41
- }
42
- if (fileURI) {
43
- this.quickFileOpenService.openFile(new uri_1.default(fileURI));
44
- }
45
- else {
46
- this.quickFileOpenService.open();
47
- }
48
- }
49
- });
50
- }
51
- registerKeybindings(keybindings) {
52
- keybindings.registerKeybinding({
53
- command: quick_file_open_1.quickFileOpen.id,
54
- keybinding: 'ctrlcmd+p'
55
- });
56
- }
57
- registerMenus(menus) {
58
- menus.registerMenuAction(browser_1.EditorMainMenu.WORKSPACE_GROUP, {
59
- commandId: quick_file_open_1.quickFileOpen.id,
60
- label: nls_1.nls.localizeByDefault('Go to File...'),
61
- order: '1',
62
- });
63
- }
64
- registerQuickAccessProvider() {
65
- this.quickFileOpenService.registerQuickAccessProvider();
66
- }
67
- };
68
- __decorate([
69
- (0, inversify_1.inject)(quick_file_open_1.QuickFileOpenService),
70
- __metadata("design:type", quick_file_open_1.QuickFileOpenService)
71
- ], QuickFileOpenFrontendContribution.prototype, "quickFileOpenService", void 0);
72
- QuickFileOpenFrontendContribution = __decorate([
73
- (0, inversify_1.injectable)()
74
- ], QuickFileOpenFrontendContribution);
75
- exports.QuickFileOpenFrontendContribution = QuickFileOpenFrontendContribution;
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2017 TypeFox and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
18
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
19
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
20
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
21
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
22
+ };
23
+ var __metadata = (this && this.__metadata) || function (k, v) {
24
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
25
+ };
26
+ Object.defineProperty(exports, "__esModule", { value: true });
27
+ exports.QuickFileOpenFrontendContribution = void 0;
28
+ const inversify_1 = require("@theia/core/shared/inversify");
29
+ const uri_1 = require("@theia/core/lib/common/uri");
30
+ const quick_file_open_1 = require("./quick-file-open");
31
+ const browser_1 = require("@theia/editor/lib/browser");
32
+ const nls_1 = require("@theia/core/lib/common/nls");
33
+ let QuickFileOpenFrontendContribution = class QuickFileOpenFrontendContribution {
34
+ registerCommands(commands) {
35
+ commands.registerCommand(quick_file_open_1.quickFileOpen, {
36
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
37
+ execute: (...args) => {
38
+ let fileURI;
39
+ if (args) {
40
+ [fileURI] = args;
41
+ }
42
+ if (fileURI) {
43
+ this.quickFileOpenService.openFile(new uri_1.default(fileURI));
44
+ }
45
+ else {
46
+ this.quickFileOpenService.open();
47
+ }
48
+ }
49
+ });
50
+ }
51
+ registerKeybindings(keybindings) {
52
+ keybindings.registerKeybinding({
53
+ command: quick_file_open_1.quickFileOpen.id,
54
+ keybinding: 'ctrlcmd+p'
55
+ });
56
+ }
57
+ registerMenus(menus) {
58
+ menus.registerMenuAction(browser_1.EditorMainMenu.WORKSPACE_GROUP, {
59
+ commandId: quick_file_open_1.quickFileOpen.id,
60
+ label: nls_1.nls.localizeByDefault('Go to File...'),
61
+ order: '1',
62
+ });
63
+ }
64
+ registerQuickAccessProvider() {
65
+ this.quickFileOpenService.registerQuickAccessProvider();
66
+ }
67
+ };
68
+ __decorate([
69
+ (0, inversify_1.inject)(quick_file_open_1.QuickFileOpenService),
70
+ __metadata("design:type", quick_file_open_1.QuickFileOpenService)
71
+ ], QuickFileOpenFrontendContribution.prototype, "quickFileOpenService", void 0);
72
+ QuickFileOpenFrontendContribution = __decorate([
73
+ (0, inversify_1.injectable)()
74
+ ], QuickFileOpenFrontendContribution);
75
+ exports.QuickFileOpenFrontendContribution = QuickFileOpenFrontendContribution;
76
76
  //# sourceMappingURL=quick-file-open-contribution.js.map
@@ -1,80 +1,80 @@
1
- import { OpenerService, KeybindingRegistry, QuickAccessRegistry, QuickAccessProvider, PreferenceService } from '@theia/core/lib/browser';
2
- import { WorkspaceService } from '@theia/workspace/lib/browser/workspace-service';
3
- import URI from '@theia/core/lib/common/uri';
4
- import { FileSearchService } from '../common/file-search-service';
5
- import { CancellationToken, Command } from '@theia/core/lib/common';
6
- import { LabelProvider } from '@theia/core/lib/browser/label-provider';
7
- import { NavigationLocationService } from '@theia/editor/lib/browser/navigation/navigation-location-service';
8
- import { MessageService } from '@theia/core/lib/common/message-service';
9
- import { FileSystemPreferences } from '@theia/filesystem/lib/browser';
10
- import { EditorOpenerOptions, Range } from '@theia/editor/lib/browser';
11
- import { QuickInputService, QuickPickItem, QuickPicks } from '@theia/core/lib/browser/quick-input/quick-input-service';
12
- export declare const quickFileOpen: Command;
13
- export interface FilterAndRange {
14
- filter: string;
15
- range?: Range;
16
- }
17
- export declare type FileQuickPickItem = QuickPickItem & {
18
- uri: URI;
19
- };
20
- export declare class QuickFileOpenService implements QuickAccessProvider {
21
- static readonly PREFIX = "";
22
- protected readonly keybindingRegistry: KeybindingRegistry;
23
- protected readonly workspaceService: WorkspaceService;
24
- protected readonly openerService: OpenerService;
25
- protected readonly quickInputService: QuickInputService;
26
- protected readonly quickAccessRegistry: QuickAccessRegistry;
27
- protected readonly fileSearchService: FileSearchService;
28
- protected readonly labelProvider: LabelProvider;
29
- protected readonly navigationLocationService: NavigationLocationService;
30
- protected readonly messageService: MessageService;
31
- protected readonly fsPreferences: FileSystemPreferences;
32
- protected readonly preferences: PreferenceService;
33
- registerQuickAccessProvider(): void;
34
- /**
35
- * Whether to hide .gitignored (and other ignored) files.
36
- */
37
- protected hideIgnoredFiles: boolean;
38
- /**
39
- * Whether the dialog is currently open.
40
- */
41
- protected isOpen: boolean;
42
- private updateIsOpen;
43
- protected filterAndRangeDefault: {
44
- filter: string;
45
- range: undefined;
46
- };
47
- /**
48
- * Tracks the user file search filter and location range e.g. fileFilter:line:column or fileFilter:line,column
49
- */
50
- protected filterAndRange: FilterAndRange;
51
- /**
52
- * The score constants when comparing file search results.
53
- */
54
- private static readonly Scores;
55
- protected init(): void;
56
- isEnabled(): boolean;
57
- open(): void;
58
- protected hideQuickPick(): void;
59
- /**
60
- * Get a string (suitable to show to the user) representing the keyboard
61
- * shortcut used to open the quick file open menu.
62
- */
63
- protected getKeyCommand(): string | undefined;
64
- getPicks(filter: string, token: CancellationToken): Promise<QuickPicks>;
65
- protected compareItems(left: FileQuickPickItem, right: FileQuickPickItem): number;
66
- openFile(uri: URI): void;
67
- protected buildOpenerOptions(): EditorOpenerOptions;
68
- private toItem;
69
- private getItemIconClasses;
70
- private getItemDescription;
71
- private getPlaceHolder;
72
- /**
73
- * Splits the given expression into a structure of search-file-filter and
74
- * location-range.
75
- *
76
- * @param expression patterns of <path><#|:><line><#|:|,><col?>
77
- */
78
- protected splitFilterAndRange(expression: string): FilterAndRange;
79
- }
1
+ import { OpenerService, KeybindingRegistry, QuickAccessRegistry, QuickAccessProvider, PreferenceService } from '@theia/core/lib/browser';
2
+ import { WorkspaceService } from '@theia/workspace/lib/browser/workspace-service';
3
+ import URI from '@theia/core/lib/common/uri';
4
+ import { FileSearchService } from '../common/file-search-service';
5
+ import { CancellationToken, Command } from '@theia/core/lib/common';
6
+ import { LabelProvider } from '@theia/core/lib/browser/label-provider';
7
+ import { NavigationLocationService } from '@theia/editor/lib/browser/navigation/navigation-location-service';
8
+ import { MessageService } from '@theia/core/lib/common/message-service';
9
+ import { FileSystemPreferences } from '@theia/filesystem/lib/browser';
10
+ import { EditorOpenerOptions, Range } from '@theia/editor/lib/browser';
11
+ import { QuickInputService, QuickPickItem, QuickPicks } from '@theia/core/lib/browser/quick-input/quick-input-service';
12
+ export declare const quickFileOpen: Command;
13
+ export interface FilterAndRange {
14
+ filter: string;
15
+ range?: Range;
16
+ }
17
+ export declare type FileQuickPickItem = QuickPickItem & {
18
+ uri: URI;
19
+ };
20
+ export declare class QuickFileOpenService implements QuickAccessProvider {
21
+ static readonly PREFIX = "";
22
+ protected readonly keybindingRegistry: KeybindingRegistry;
23
+ protected readonly workspaceService: WorkspaceService;
24
+ protected readonly openerService: OpenerService;
25
+ protected readonly quickInputService: QuickInputService;
26
+ protected readonly quickAccessRegistry: QuickAccessRegistry;
27
+ protected readonly fileSearchService: FileSearchService;
28
+ protected readonly labelProvider: LabelProvider;
29
+ protected readonly navigationLocationService: NavigationLocationService;
30
+ protected readonly messageService: MessageService;
31
+ protected readonly fsPreferences: FileSystemPreferences;
32
+ protected readonly preferences: PreferenceService;
33
+ registerQuickAccessProvider(): void;
34
+ /**
35
+ * Whether to hide .gitignored (and other ignored) files.
36
+ */
37
+ protected hideIgnoredFiles: boolean;
38
+ /**
39
+ * Whether the dialog is currently open.
40
+ */
41
+ protected isOpen: boolean;
42
+ private updateIsOpen;
43
+ protected filterAndRangeDefault: {
44
+ filter: string;
45
+ range: undefined;
46
+ };
47
+ /**
48
+ * Tracks the user file search filter and location range e.g. fileFilter:line:column or fileFilter:line,column
49
+ */
50
+ protected filterAndRange: FilterAndRange;
51
+ /**
52
+ * The score constants when comparing file search results.
53
+ */
54
+ private static readonly Scores;
55
+ protected init(): void;
56
+ isEnabled(): boolean;
57
+ open(): void;
58
+ protected hideQuickPick(): void;
59
+ /**
60
+ * Get a string (suitable to show to the user) representing the keyboard
61
+ * shortcut used to open the quick file open menu.
62
+ */
63
+ protected getKeyCommand(): string | undefined;
64
+ getPicks(filter: string, token: CancellationToken): Promise<QuickPicks>;
65
+ protected compareItems(left: FileQuickPickItem, right: FileQuickPickItem): number;
66
+ openFile(uri: URI): void;
67
+ protected buildOpenerOptions(): EditorOpenerOptions;
68
+ private toItem;
69
+ private getItemIconClasses;
70
+ private getItemDescription;
71
+ private getPlaceHolder;
72
+ /**
73
+ * Splits the given expression into a structure of search-file-filter and
74
+ * location-range.
75
+ *
76
+ * @param expression patterns of <path><#|:><line><#|:|,><col?>
77
+ */
78
+ protected splitFilterAndRange(expression: string): FilterAndRange;
79
+ }
80
80
  //# sourceMappingURL=quick-file-open.d.ts.map