mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
16 lines
290 B
Bash
16 lines
290 B
Bash
#!/usr/bin/bash
|
|
# shellcheck disable=SC1090
|
|
|
|
__PROXY__="${0:A:h}/proxy.py"
|
|
|
|
proxy() {
|
|
source <(env "DEFAULT_PROXY=$DEFAULT_PROXY" "$__PROXY__" "$1")
|
|
}
|
|
|
|
_proxy() {
|
|
local -r commands=('enable' 'disable' 'status')
|
|
compset -P '*,'
|
|
compadd -S '' "${commands[@]}"
|
|
}
|
|
|
|
compdef '_proxy' 'proxy'
|