summaryrefslogtreecommitdiff
path: root/argv.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-28 12:12:20 -0500
committerJeff Carr <[email protected]>2025-10-28 12:12:20 -0500
commit90489b78a80a1ee2204872c6ff434c476f4970cd (patch)
tree44b9dbaa6362d326c7a26d9e49a3d01f895f0653 /argv.proto
parent0c94928d631ab218dc20f3492b92de2b13aa3c1b (diff)
more argv logic
Diffstat (limited to 'argv.proto')
-rw-r--r--argv.proto9
1 files changed, 5 insertions, 4 deletions
diff --git a/argv.proto b/argv.proto
index 0d5763b..16f01a9 100644
--- a/argv.proto
+++ b/argv.proto
@@ -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`