15 lines
431 B
Text
15 lines
431 B
Text
|
# Expand aliases inline - see http://blog.patshead.com/2012/11/automatically-expaning-zsh-global-aliases---simplified.html
|
||
|
globalias() {
|
||
|
if [[ $LBUFFER =~ ' [A-Z0-9]+$' ]]; then
|
||
|
zle _expand_alias
|
||
|
zle expand-word
|
||
|
fi
|
||
|
zle self-insert
|
||
|
}
|
||
|
|
||
|
zle -N globalias
|
||
|
|
||
|
bindkey " " globalias
|
||
|
bindkey "^ " magic-space # control-space to bypass completion
|
||
|
bindkey -M isearch " " magic-space # normal space during searches
|