Commit 20c1966

Richard Luby <richluby@gmail.com>
2016-11-18 10:27:58
user gets feedback for setting username
user name updates status bar when set.
1 parent a0bdc14
Changed files (1)
command.go
@@ -52,6 +52,7 @@ func setUserName(command Command) error {
 		return fmt.Errorf("Could not set the user due to empty username.")
 	}
 	clientConfig.USER = command.PositionalParameters[0]
+	setStatusBar(fmt.Sprintf("User name set to %s", COLOR_BLUE+command.PositionalParameters[0]+COLOR_RESET))
 	return nil
 }