summaryrefslogtreecommitdiff
path: root/bash.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-12 01:58:49 -0500
committerJeff Carr <[email protected]>2025-10-12 01:58:49 -0500
commitbf9f85a721d6045e631df9abe91f02d9723fcd19 (patch)
tree453d0b67ed5cb126482967291ce33e61e9e277e1 /bash.go
parentc6d9986d986b5d5b170335ff3a8f3e06d4c003ea (diff)
fantastic
Diffstat (limited to 'bash.go')
-rw-r--r--bash.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/bash.go b/bash.go
index 2602513..0cef75c 100644
--- a/bash.go
+++ b/bash.go
@@ -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)