dotfiles/dot_oh-my-zsh/plugins/globalias/globalias.plugin.zsh

24 lines
637 B
Bash
Raw Normal View History

2020-06-15 10:31:33 +00:00
globalias() {
2020-11-19 01:19:31 +00: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]}
if [[ $GLOBALIAS_FILTER_VALUES[(Ie)$word] -eq 0 ]]; then
zle _expand_alias
zle expand-word
fi
2020-06-15 10:31:33 +00:00
zle self-insert
}
zle -N globalias
# space expands all aliases, including global
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
# normal space during searches
bindkey -M isearch " " magic-space