We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 054b722 + ffb6dbe commit 580978eCopy full SHA for 580978e
pkg/actions/os/os.go
@@ -22,11 +22,7 @@ func ActionEnvironmentVariables() carapace.Action {
22
for index, e := range os.Environ() {
23
pair := strings.SplitN(e, "=", 2)
24
vars[index*2] = pair[0]
25
- if len(pair[1]) > 40 {
26
- vars[(index*2)+1] = pair[1][:37] + "..."
27
- } else {
28
- vars[(index*2)+1] = pair[1]
29
- }
+ vars[(index*2)+1] = pair[1]
30
}
31
return carapace.ActionValuesDescribed(vars...)
32
})
0 commit comments