0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-19 09:51:19 +02:00

Add missing howdy options to tab autocomplete

This commit is contained in:
boltgolt 2020-08-07 14:56:39 +02:00
parent c8c021bfa9
commit 8abe3c3eeb
No known key found for this signature in database
GPG key ID: BECEC9937E1AAE26

View file

@ -14,7 +14,7 @@ _howdy() {
case "${prev}" in
# After the main command, show the commands
"howdy")
opts="add clear config disable list remove clear test"
opts="add clear config disable list remove clear snapshot test version"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
;;