|
| 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