globalias: expand filtering to anywhere in the command (#9338)

master
Patrick W. Healy 6 years ago committed by GitHub
parent 568a977d20
commit e75aa2875e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      plugins/globalias/globalias.plugin.zsh

@ -1,5 +1,7 @@
globalias() {
if [[ $GLOBALIAS_FILTER_VALUES[(Ie)$LBUFFER] -eq 0 ]]; then
# Get last word to the left of the cursor
local word=${${(A)=LBUFFER}[-1]}
if [[ $GLOBALIAS_FILTER_VALUES[(Ie)$word] -eq 0 ]]; then
zle _expand_alias
zle expand-word
fi

Loading…
Cancel
Save