0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/globalias/globalias.plugin.zsh

22 lines
529 B
Bash
Raw Normal View History

2016-09-27 14:18:23 +02:00
globalias() {
# 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-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