Skip to content

Instantly share code, notes, and snippets.

@Frost
Created June 7, 2017 09:15
Show Gist options
  • Save Frost/6ee5308103c43638ed7af493c8df702d to your computer and use it in GitHub Desktop.
Save Frost/6ee5308103c43638ed7af493c8df702d to your computer and use it in GitHub Desktop.
ZSH expand alias on enter
zplug "momo-lab/zsh-abbrev-alias"
zplug load
expand-alias-and-accept-line() {
__abbrev_alias::magic_abbrev_expand
zle .backward-delete-char # this prevets a ^M character from ending up as part of the command
zle .accept-line
}
zle -N accept-line expand-alias-and-accept-line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment