Skip to content

Commit d08da43

Browse files
committed
stub TerminalCompletionProvider proposed API
fixes #14604 contributed on behalf of STMicroelectronics Signed-off-by: Remi Schnekenburger <[email protected]>
1 parent 998bf47 commit d08da43

File tree

4 files changed

+184
-2
lines changed

4 files changed

+184
-2
lines changed

packages/plugin-ext/src/plugin/plugin-context.ts

+13-2
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,9 @@ import {
236236
PortAutoForwardAction,
237237
PortAttributes,
238238
DebugVisualization,
239-
TerminalShellExecutionCommandLineConfidence
239+
TerminalShellExecutionCommandLineConfidence,
240+
TerminalCompletionItemKind,
241+
TerminalCompletionList
240242
} from './types-impl';
241243
import { AuthenticationExtImpl } from './authentication-ext';
242244
import { SymbolKind } from '../common/plugin-api-rpc-model';
@@ -656,6 +658,13 @@ export function createAPIFactory(
656658
registerProfileContentHandler(id: string, profileContentHandler: theia.ProfileContentHandler): theia.Disposable {
657659
return Disposable.NULL;
658660
},
661+
/** @stubbed TerminalCompletionProvider */
662+
registerTerminalCompletionProvider<T extends theia.TerminalCompletionItem>(
663+
provider: theia.TerminalCompletionProvider<T>,
664+
...triggerCharacters: string[]
665+
): theia.Disposable {
666+
return Disposable.NULL;
667+
},
659668
/** @stubbed TerminalQuickFixProvider */
660669
registerTerminalQuickFixProvider(id: string, provider: theia.TerminalQuickFixProvider): theia.Disposable {
661670
return terminalExt.registerTerminalQuickFixProvider(id, provider);
@@ -1570,7 +1579,9 @@ export function createAPIFactory(
15701579
PortAutoForwardAction,
15711580
PortAttributes,
15721581
DebugVisualization,
1573-
TerminalShellExecutionCommandLineConfidence
1582+
TerminalShellExecutionCommandLineConfidence,
1583+
TerminalCompletionItemKind,
1584+
TerminalCompletionList
15741585
};
15751586
};
15761587
}

packages/plugin-ext/src/plugin/types-impl.ts

+27
Original file line numberDiff line numberDiff line change
@@ -3842,6 +3842,33 @@ export enum EditSessionIdentityMatch {
38423842
}
38433843
// #endregion
38443844

3845+
// #region terminalCompletionProvider
3846+
export class TerminalCompletionList<T extends theia.TerminalCompletionItem> {
3847+
3848+
resourceRequestConfig?: theia.TerminalResourceRequestConfig;
3849+
3850+
items: T[];
3851+
3852+
/**
3853+
* Creates a new completion list.
3854+
*
3855+
* @param items The completion items.
3856+
* @param resourceRequestConfig Indicates which resources should be shown as completions for the cwd of the terminal.
3857+
* @stubbed
3858+
*/
3859+
constructor(items?: T[], resourceRequestConfig?: theia.TerminalResourceRequestConfig) {
3860+
}
3861+
}
3862+
3863+
export enum TerminalCompletionItemKind {
3864+
File = 0,
3865+
Folder = 1,
3866+
Flag = 2,
3867+
Method = 3,
3868+
Argument = 4
3869+
}
3870+
// #endregion
3871+
38453872
// #region terminalQuickFixProvider
38463873
export class TerminalQuickFixTerminalCommand {
38473874
/**

packages/plugin/src/theia.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ import './theia.proposed.profileContentHandlers';
4343
import './theia.proposed.resolvers';
4444
import './theia.proposed.scmValidation';
4545
import './theia.proposed.shareProvider';
46+
import './theia.proposed.terminalCompletionProvider';
4647
import './theia.proposed.terminalQuickFixProvider';
4748
import './theia.proposed.textSearchProvider';
4849
import './theia.proposed.timeline';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
// *****************************************************************************
2+
// Copyright (C) 2025 STMicroelectronics and others.
3+
//
4+
// This program and the accompanying materials are made available under the
5+
// terms of the Eclipse Public License v. 2.0 which is available at
6+
// http://www.eclipse.org/legal/epl-2.0.
7+
//
8+
// This Source Code may also be made available under the following Secondary
9+
// Licenses when the conditions for such availability set forth in the Eclipse
10+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
11+
// with the GNU Classpath Exception which is available at
12+
// https://www.gnu.org/software/classpath/license.html.
13+
//
14+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
15+
// *****************************************************************************
16+
17+
/*---------------------------------------------------------------------------------------------
18+
* Copyright (c) Microsoft Corporation. All rights reserved.
19+
* Licensed under the MIT License. See License.txt in the project root for license information.
20+
*--------------------------------------------------------------------------------------------*/
21+
// code copied and modified from https://github.com/microsoft/vscode/blob/1.96.2/src/vscode-dts/vscode.proposed.terminalCompletionProvider.d.ts
22+
23+
declare module '@theia/plugin' {
24+
25+
// https://github.com/microsoft/vscode/issues/226562
26+
27+
export interface TerminalCompletionProvider<T extends TerminalCompletionItem> {
28+
id: string;
29+
/**
30+
* Provide completions for the given position and document.
31+
* @param terminal The terminal for which completions are being provided.
32+
* @param context Information about the terminal's current state.
33+
* @param token A cancellation token.
34+
* @return A list of completions.
35+
*/
36+
provideTerminalCompletions(terminal: Terminal, context: TerminalCompletionContext, token: CancellationToken): ProviderResult<T[] | TerminalCompletionList<T>>;
37+
}
38+
39+
export interface TerminalCompletionItem {
40+
/**
41+
* The label of the completion.
42+
*/
43+
label: string;
44+
45+
/**
46+
* The index of the start of the range to replace.
47+
*/
48+
replacementIndex: number;
49+
50+
/**
51+
* The length of the range to replace.
52+
*/
53+
replacementLength: number;
54+
55+
/**
56+
* The completion's detail which appears on the right of the list.
57+
*/
58+
detail?: string;
59+
60+
/**
61+
* The completion's kind. Note that this will map to an icon.
62+
*/
63+
kind?: TerminalCompletionItemKind;
64+
}
65+
66+
/**
67+
* Terminal item kinds.
68+
*/
69+
export enum TerminalCompletionItemKind {
70+
File = 0,
71+
Folder = 1,
72+
Flag = 2,
73+
Method = 3,
74+
Argument = 4
75+
}
76+
77+
export interface TerminalCompletionContext {
78+
/**
79+
* The complete terminal command line.
80+
*/
81+
commandLine: string;
82+
/**
83+
* The index of the
84+
* cursor in the command line.
85+
*/
86+
cursorPosition: number;
87+
}
88+
89+
export namespace window {
90+
/**
91+
* Register a completion provider for a certain type of terminal.
92+
*
93+
* @param provider The completion provider.
94+
* @returns A {@link Disposable} that unregisters this provider when being disposed.
95+
* @stubbed
96+
*/
97+
export function registerTerminalCompletionProvider<T extends TerminalCompletionItem>(provider: TerminalCompletionProvider<T>, ...triggerCharacters: string[]): Disposable;
98+
}
99+
100+
/**
101+
* Represents a collection of {@link TerminalCompletionItem completion items} to be presented
102+
* in the terminal.
103+
*/
104+
export class TerminalCompletionList<T extends TerminalCompletionItem = TerminalCompletionItem> {
105+
106+
/**
107+
* Resources that should be shown in the completions list for the cwd of the terminal.
108+
*/
109+
resourceRequestConfig?: TerminalResourceRequestConfig;
110+
111+
/**
112+
* The completion items.
113+
*/
114+
items: T[];
115+
116+
/**
117+
* Creates a new completion list.
118+
*
119+
* @param items The completion items.
120+
* @param resourceRequestConfig Indicates which resources should be shown as completions for the cwd of the terminal.
121+
*/
122+
constructor(items?: T[], resourceRequestConfig?: TerminalResourceRequestConfig);
123+
}
124+
125+
export interface TerminalResourceRequestConfig {
126+
/**
127+
* Show files as completion items.
128+
*/
129+
filesRequested?: boolean;
130+
/**
131+
* Show folders as completion items.
132+
*/
133+
foldersRequested?: boolean;
134+
/**
135+
* If no cwd is provided, no resources will be shown as completions.
136+
*/
137+
cwd?: Uri;
138+
/**
139+
* The path separator to use when constructing paths.
140+
*/
141+
pathSeparator: string;
142+
}
143+
}

0 commit comments

Comments
 (0)