diff options
| author | John Estabrook <jestabro@vyos.io> | 2025-12-17 11:54:20 -0600 |
|---|---|---|
| committer | John Estabrook <jestabro@vyos.io> | 2025-12-17 21:29:58 -0600 |
| commit | f58bfaa3487ef821466e35fbd2bb073732e889dd (patch) | |
| tree | c1c340dc190d2595cc1e1ec8447f163ce56610b2 /data | |
| parent | 28b6ac04aaef995656eaabb2c9a279a79e657687 (diff) | |
| download | vyconf-f58bfaa3487ef821466e35fbd2bb073732e889dd.tar.gz vyconf-f58bfaa3487ef821466e35fbd2bb073732e889dd.zip | |
T8061: add get_completion_env request
Return help strings and values in the form used by bash completion.
Diffstat (limited to 'data')
| -rw-r--r-- | data/vyconf.proto | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto index af10d68..6ba6e6a 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -198,6 +198,11 @@ message Request { required bool legacy_format = 2; } + message GetCompletionEnv { + repeated string path = 1; + required bool legacy_format = 2; + } + oneof msg { Prompt prompt = 1; SetupSession setup_session = 2; @@ -239,6 +244,7 @@ message Request { ConfigUnsaved config_unsaved = 38; ReferencePathExists reference_path_exists = 39; GetPathType get_path_type = 40; + GetCompletionEnv get_completion_env = 41; } } |
