Created
June 7, 2017 09:15
-
-
Save Frost/6ee5308103c43638ed7af493c8df702d to your computer and use it in GitHub Desktop.
ZSH expand alias on enter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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