summaryrefslogtreecommitdiff
path: root/notsure.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 12:38:01 -0500
committerJeff Carr <[email protected]>2025-10-17 12:38:01 -0500
commit8ad0160a0d62591fbdc26518f8d664ff0ea64b8d (patch)
treee10e9d8c62a782c1ea85969aaca7e648a0eab012 /notsure.go
parent9ab7015f12dcf2d629dd878a845dd29708f980ff (diff)
put things that I'm not sure about here
Diffstat (limited to 'notsure.go')
-rw-r--r--notsure.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/notsure.go b/notsure.go
new file mode 100644
index 0000000..f61b9c5
--- /dev/null
+++ b/notsure.go
@@ -0,0 +1,18 @@
+package argvpb
+
+// these are things I'm not sure about doing
+// or haven't figured out what to do with
+// or are generally part of idiocracy
+
+// this is sill in development
+// figure out how to trigger this
+var argBash ArgsBash
+
+type ArgsBash struct {
+ Bash bool `arg:"--bash" help:"generate bash completion"`
+}
+
+// returns the name of the executable registered for shell autocomplete
+func AppName() string {
+ return me.ARGNAME
+}