ohmyzsh/plugins/globalias/globalias.plugin.zsh
2f38b454 7b5147ef5e fix(globalias): escape backslash to prevent alias expansion
When typing a backslash followed by a character, globalias was
incorrectly triggering alias expansion. Add early return when the
last word starts with backslash to allow literal character insertion.
2026-04-25 12:43:50 +08:00

27 lines
710 B
Bash

globalias() {
# 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 [[ $word[1] == '\' ]]; then
zle self-insert
return
fi
if [[ $GLOBALIAS_FILTER_VALUES[(Ie)$word] -eq 0 ]]; then
zle _expand_alias
zle expand-word
fi
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