mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
Add shell-proxy plugin (#8692)
This commit is contained in:
parent
aada4d62bf
commit
5ea25e6736
5 changed files with 174 additions and 0 deletions
16
plugins/shell-proxy/shell-proxy.plugin.zsh
Normal file
16
plugins/shell-proxy/shell-proxy.plugin.zsh
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/bash
|
||||
# shellcheck disable=SC1090
|
||||
|
||||
__PROXY__="${0:A:h}/proxy.py"
|
||||
|
||||
proxy() {
|
||||
source <("$__PROXY__" "$1")
|
||||
}
|
||||
|
||||
_proxy() {
|
||||
local -r commands=('enable' 'disable' 'status')
|
||||
compset -P '*,'
|
||||
compadd -S '' "${commands[@]}"
|
||||
}
|
||||
|
||||
compdef '_proxy' 'proxy'
|
||||
Loading…
Add table
Add a link
Reference in a new issue