diff options
| author | Jeff Carr <[email protected]> | 2025-10-12 01:58:49 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-12 01:58:49 -0500 |
| commit | bf9f85a721d6045e631df9abe91f02d9723fcd19 (patch) | |
| tree | 453d0b67ed5cb126482967291ce33e61e9e277e1 /bash.go | |
| parent | c6d9986d986b5d5b170335ff3a8f3e06d4c003ea (diff) | |
fantastic
Diffstat (limited to 'bash.go')
| -rw-r--r-- | bash.go | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -9,6 +9,16 @@ import ( "strings" ) +// deprecate this +func Bash3(dest any) *Auto { + return Autocomplete(dest) +} + +// deprecate this +func Bash(dest any) *Auto { + return Autocomplete(dest) +} + func makeCompletionText(argname string) string { sh := getParentProcessName() return fmt.Sprintf("# shell might be %s", sh) |
