mirror of https://git.xinb.cc/xinb/ohmyzsh.git
12 lines
311 B
Bash
12 lines
311 B
Bash
|
globalias() {
|
||
|
zle _expand_alias
|
||
|
zle expand-word
|
||
|
zle self-insert
|
||
|
}
|
||
|
zle -N globalias
|
||
|
bindkey -e " " globalias
|
||
|
bindkey -v " " globalias
|
||
|
bindkey -e "^ " magic-space # control-space to bypass completion
|
||
|
bindkey -v "^ " magic-space
|
||
|
bindkey -M isearch " " magic-space # normal space during searches
|