diff options
Diffstat (limited to 'oh-my-zsh/plugins/aliases/aliases.plugin.zsh')
-rw-r--r-- | oh-my-zsh/plugins/aliases/aliases.plugin.zsh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/oh-my-zsh/plugins/aliases/aliases.plugin.zsh b/oh-my-zsh/plugins/aliases/aliases.plugin.zsh new file mode 100644 index 0000000..9864de9 --- /dev/null +++ b/oh-my-zsh/plugins/aliases/aliases.plugin.zsh @@ -0,0 +1,14 @@ +# Handle $0 according to the standard: +# https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html +0="${${ZERO:-${0:#$ZSH_ARGZERO}}:-${(%):-%N}}" +0="${${(M)0:#/*}:-$PWD/$0}" + +eval ' + function acs(){ + (( $+commands[python3] )) || { + echo "[error] No python executable detected" + return + } + alias | python3 "'"${0:h}"'/cheatsheet.py" "$@" + } +' |