Skip to content

feat: Add vscodeipc subcommand for VS Code Extension #5326

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

Merged
merged 15 commits into from
Dec 18, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Silence usage
  • Loading branch information
kylecarbs committed Dec 18, 2022
commit 6ab104ff516e15ae88a2564f3cab795b803a9469
7 changes: 4 additions & 3 deletions cli/vscodeipc.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ func vscodeipcCmd() *cobra.Command {
port uint16
)
cmd := &cobra.Command{
Use: "vscodeipc <workspace-agent>",
Args: cobra.ExactArgs(1),
Hidden: true,
Use: "vscodeipc <workspace-agent>",
Args: cobra.ExactArgs(1),
SilenceUsage: true,
Hidden: true,
RunE: func(cmd *cobra.Command, args []string) error {
if rawURL == "" {
return xerrors.New("CODER_URL must be set!")
Expand Down