mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 22:41:31 +01:00
Merge pull request #241395 from microsoft/tyriar/241392
Differentiate flags/options, add option value type
This commit is contained in:
@@ -60,10 +60,12 @@ declare module 'vscode' {
|
||||
export enum TerminalCompletionItemKind {
|
||||
File = 0,
|
||||
Folder = 1,
|
||||
Flag = 2,
|
||||
Method = 3,
|
||||
Method = 2,
|
||||
Alias = 3,
|
||||
Argument = 4,
|
||||
Alias = 5,
|
||||
Option = 5,
|
||||
OptionValue = 6,
|
||||
Flag = 7,
|
||||
}
|
||||
|
||||
export interface TerminalCompletionContext {
|
||||
|
||||
Reference in New Issue
Block a user