Skip to content

Commit 32f1ea5

Browse files
authored
Update branding of VSCode in the code command
1 parent 45ea360 commit 32f1ea5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/cmd/codespace/code.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ func newCodeCmd(app *App) *cobra.Command {
1717

1818
codeCmd := &cobra.Command{
1919
Use: "code",
20-
Short: "Open a codespace in VS Code",
20+
Short: "Open a codespace in Visual Studio Code",
2121
Args: noArgsConstraint,
2222
RunE: func(cmd *cobra.Command, args []string) error {
2323
return app.VSCode(cmd.Context(), codespace, useInsiders)
2424
},
2525
}
2626

2727
codeCmd.Flags().StringVarP(&codespace, "codespace", "c", "", "Name of the codespace")
28-
codeCmd.Flags().BoolVar(&useInsiders, "insiders", false, "Use the insiders version of VS Code")
28+
codeCmd.Flags().BoolVar(&useInsiders, "insiders", false, "Use the insiders version of Visual Studio Code")
2929

3030
return codeCmd
3131
}
@@ -45,7 +45,7 @@ func (a *App) VSCode(ctx context.Context, codespaceName string, useInsiders bool
4545

4646
url := vscodeProtocolURL(codespaceName, useInsiders)
4747
if err := open.Run(url); err != nil {
48-
return fmt.Errorf("error opening vscode URL %s: %s. (Is VS Code installed?)", url, err)
48+
return fmt.Errorf("error opening vscode URL %s: %s. (Is Visual Studio Code installed?)", url, err)
4949
}
5050

5151
return nil

0 commit comments

Comments
 (0)