diff options
Diffstat (limited to 'argv.proto')
| -rw-r--r-- | argv.proto | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -34,12 +34,13 @@ message Argv { // `autogenpb:marshal repeated string real = 5; // what will really be sent to the application string subcmd = 6; // the subcommand being processed. For "git pull <tab>", cmd would be "pull" string partial = 7; // if the user has only partially inputed something - bool fast = 8; // is autocomplete running quickly? + int32 fast = 8; // is autocomplete running quickly? string stdout = 9; // all output is loaded here before being sent to the shell string stderr = 10; // all output is loaded here before being sent to the shell - int32 helpCounter = 11; // counter to track if the help text has been sent to Stderr - string uuid = 12; // all output is loaded here before being sent to the shell - string stddbg = 13; // all output is loaded here before being sent to the shell + string stddbg = 11; // all output is loaded here before being sent to the shell + int32 outCounter = 12; // counter to track if the help text has been sent to Stderr + int32 errCounter = 13; // counter to track if the help text has been sent to Stderr + string uuid = 14; // all output is loaded here before being sent to the shell } message Argvs { // `autogenpb:marshal` `autogenpb:sort` `autogenpb:nomutex` |
