2016-09-27 14:18:23 +02:00
|
|
|
globalias() {
|
2020-10-14 17:23:03 +02:00
|
|
|
# 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]}
|
2020-10-14 16:57:59 +02:00
|
|
|
if [[ $GLOBALIAS_FILTER_VALUES[(Ie)$word] -eq 0 ]]; then
|
2020-10-11 21:23:21 +02:00
|
|
|
zle _expand_alias
|
|
|
|
zle expand-word
|
|
|
|
fi
|
2016-09-27 14:18:23 +02:00
|
|
|
zle self-insert
|
|
|
|
}
|
|
|
|
zle -N globalias
|
2016-10-04 11:21:18 +02:00
|
|
|
|
2016-10-04 13:05:41 +02:00
|
|
|
# space expands all aliases, including global
|
2016-10-04 11:21:18 +02:00
|
|
|
bindkey -M emacs " " globalias
|
|
|
|
bindkey -M viins " " globalias
|
|
|
|
|
|
|
|
# control-space to make a normal space
|
|
|
|
bindkey -M emacs "^ " magic-space
|
|
|
|
bindkey -M viins "^ " magic-space
|
2016-10-04 13:03:37 +02:00
|
|
|
|
|
|
|
# normal space during searches
|
|
|
|
bindkey -M isearch " " magic-space
|