diff options
author | Marc Cornellà <hello@mcornella.com> | 2022-08-01 20:54:45 +0200 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2022-08-01 20:54:45 +0200 |
commit | 4fcf52c2b1e086596d96b04f9c1ff3d742194857 (patch) | |
tree | 7df06014e085d52f8837c95a52ce996c1dcc0b62 /plugins/aliases/aliases.plugin.zsh | |
parent | aa75eeea3348b906f2016be0e44335889e0faed1 (diff) | |
download | zsh-4fcf52c2b1e086596d96b04f9c1ff3d742194857.tar.gz zsh-4fcf52c2b1e086596d96b04f9c1ff3d742194857.tar.bz2 zsh-4fcf52c2b1e086596d96b04f9c1ff3d742194857.zip |
fix: don't use `$functions_source` for compatibility with zsh < 5.4
Diffstat (limited to 'plugins/aliases/aliases.plugin.zsh')
-rw-r--r-- | plugins/aliases/aliases.plugin.zsh | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/plugins/aliases/aliases.plugin.zsh b/plugins/aliases/aliases.plugin.zsh index 4e1e0558e..9864de957 100644 --- a/plugins/aliases/aliases.plugin.zsh +++ b/plugins/aliases/aliases.plugin.zsh @@ -1,11 +1,14 @@ -# with lots of 3rd-party amazing aliases installed, just need something to explore it quickly. -# -# - acs: alias cheatsheet -# group alias by command, pass addition argv to grep. -function acs(){ - (( $+commands[python3] )) || { - echo "[error] No python executable detected" - return +# 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" "$@" } - alias | python3 ${functions_source[$0]:h}/cheatsheet.py $@ -} +' |