You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
376 B
17 lines
376 B
globalias() { |
|
zle _expand_alias |
|
zle expand-word |
|
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
|
|
|