mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
globalias: expand filtering to anywhere in the command (#9338)
This commit is contained in:
parent
568a977d20
commit
e75aa2875e
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
globalias() {
|
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_alias
|
||||||
zle expand-word
|
zle expand-word
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue