Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix tunnel spec issues #244769

Merged
merged 10 commits into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { commonOptions, extensionManagementOptions, troubleshootingOptions, tunnelOptions } from './code';
import codeTunnelCompletionSpec from './code-tunnel';
import { commonOptions, extensionManagementOptions, troubleshootingOptions, globalTunnelOptions, codeTunnelSubcommands, extTunnelSubcommand, codeTunnelOptions } from './code';
import codeTunnelCompletionSpec, { codeTunnelSpecOptions } from './code-tunnel';

const codeTunnelInsidersCompletionSpec: Fig.Spec = {
...codeTunnelCompletionSpec,
name: 'code-tunnel-insiders',
description: 'Create a tunnel that\'s accessible on vscode.dev from anywhere, with insider features.',
subcommands: [...codeTunnelSubcommands, extTunnelSubcommand],
options: [
...commonOptions,
...extensionManagementOptions('code-tunnel-insiders'),
...troubleshootingOptions('code-tunnel-insiders'),
...tunnelOptions
...globalTunnelOptions,
...codeTunnelOptions,
...codeTunnelSpecOptions
]
};

Expand Down
80 changes: 77 additions & 3 deletions extensions/terminal-suggest/src/completions/code-tunnel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,92 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import code, { codeTunnelSubcommands, commonOptions, extensionManagementOptions, troubleshootingOptions, tunnelOptions } from './code';
import code, { codeTunnelSubcommands, commonOptions, extensionManagementOptions, troubleshootingOptions, globalTunnelOptions, extTunnelSubcommand, codeTunnelOptions } from './code';


export const codeTunnelSpecOptions: Fig.Option[] = [
{
name: '--cli-data-dir',
description: 'Directory where CLI metadata should be stored',
isRepeatable: true,
args: {
name: 'cli_data_dir',
isOptional: true,
},
},
{
name: '--log-to-file',
description: 'Log to a file in addition to stdout. Used when running as a service',
hidden: true,
isRepeatable: true,
args: {
name: 'log_to_file',
isOptional: true,
template: 'filepaths',
},
},
{
name: '--log',
description: 'Log level to use',
isRepeatable: true,
args: {
name: 'log',
isOptional: true,
suggestions: [
'trace',
'debug',
'info',
'warn',
'error',
'critical',
'off',
],
},
},
{
name: '--telemetry-level',
description: 'Sets the initial telemetry level',
hidden: true,
isRepeatable: true,
args: {
name: 'telemetry_level',
isOptional: true,
suggestions: [
'off',
'crash',
'error',
'all',
],
},
},
{
name: '--verbose',
description: 'Print verbose output (implies --wait)',
},
{
name: '--disable-telemetry',
description: 'Disable telemetry for the current command, even if it was previously accepted as part of the license prompt or specified in \'--telemetry-level\'',
},
{
name: ['-h', '--help'],
description: 'Print help',
},
];

const codeTunnelCompletionSpec: Fig.Spec = {
...code,
name: 'code-tunnel',
description: 'Create a tunnel that\'s accessible on vscode.dev from anywhere.',
subcommands: codeTunnelSubcommands,
subcommands: [
...codeTunnelSubcommands,
extTunnelSubcommand
],
options: [
...commonOptions,
...extensionManagementOptions('code-tunnel'),
...troubleshootingOptions('code-tunnel'),
...tunnelOptions
...globalTunnelOptions,
...codeTunnelOptions
]
};

Expand Down
Loading
Loading