this repo has no description

.config/fish/completions: add kafkactx,unixtime

+12
+3
private_dot_config/private_fish/completions/kafkactx.fish
··· 1 + complete -c kafkactx -f # -f prevents file completion 2 + 3 + complete -c kafkactx -n "__fish_use_subcommand" -a bootstrap-servers -d "Comma separated broker addresses"
+9
private_dot_config/private_fish/completions/unixtime.fish
··· 1 + complete -c unixtime -f # -f prevents file completion 2 + 3 + # subcommands 4 + complete -c unixtime -n "__fish_use_subcommand" -a "now" -d "Current time in epoch seconds" 5 + complete -c unixtime -n "__fish_use_subcommand" -a "decode" -d "Decode epoch seconds to human readable time" 6 + complete -c unixtime -n "__fish_use_subcommand" -a "encode" -d "Encode human readable time to epoch seconds" 7 + 8 + # help flag 9 + complete -c unixtime -s h -l help -d "Show help message"