We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent23351fb commit6c20099Copy full SHA for 6c20099
cli/favorite.go
@@ -29,7 +29,7 @@ func (r *RootCmd) favorite() *clibase.Cmd {
29
iferr:=client.FavoriteWorkspace(inv.Context(),ws.ID);err!=nil {
30
returnxerrors.Errorf("favorite workspace: %w",err)
31
}
32
-_,_=fmt.Fprintf(inv.Stdout,"Workspace %q added to favorites.",ws.Name)
+_,_=fmt.Fprintf(inv.Stdout,"Workspace %q added to favorites.\n",ws.Name)
33
returnnil
34
},
35
@@ -56,7 +56,7 @@ func (r *RootCmd) unfavorite() *clibase.Cmd {
56
iferr:=client.UnfavoriteWorkspace(inv.Context(),ws.ID);err!=nil {
57
returnxerrors.Errorf("unfavorite workspace: %w",err)
58
59
-_,_=fmt.Fprintf(inv.Stdout,"Workspace %q removed from favorites.",ws.Name)
+_,_=fmt.Fprintf(inv.Stdout,"Workspace %q removed from favorites.\n",ws.Name)
60
61
62