diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-10-14 17:23:03 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-10-14 17:23:03 +0200 |
commit | 53cbd658f5ae6874af0d804cee6748dfba69e786 (patch) | |
tree | 33c4bd4972747970f0d4afcdae058634600c8591 /plugins | |
parent | e75aa2875eea94fcf7ceb3f246db96cc3bc61a2e (diff) | |
download | zsh-53cbd658f5ae6874af0d804cee6748dfba69e786.tar.gz zsh-53cbd658f5ae6874af0d804cee6748dfba69e786.tar.bz2 zsh-53cbd658f5ae6874af0d804cee6748dfba69e786.zip |
globalias: use ${(z)var} to split into words using shell parsing
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/globalias/globalias.plugin.zsh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/globalias/globalias.plugin.zsh b/plugins/globalias/globalias.plugin.zsh index d4d40c863..bd27d589d 100644 --- a/plugins/globalias/globalias.plugin.zsh +++ b/plugins/globalias/globalias.plugin.zsh @@ -1,6 +1,8 @@ globalias() { - # Get last word to the left of the cursor - local word=${${(A)=LBUFFER}[-1]} + # Get last word to the left of the cursor: + # (z) splits into words using shell parsing + # (A) makes it an array even if there's only one element + local word=${${(Az)LBUFFER}[-1]} if [[ $GLOBALIAS_FILTER_VALUES[(Ie)$word] -eq 0 ]]; then zle _expand_alias zle expand-word |