Created
January 9, 2017 16:30
-
-
Save Misaghlb/d153bf84ee63f8adb42616e7a0245a81 to your computer and use it in GitHub Desktop.
oh-my-zsh autocompletion plugin for hexo static site generator
This file contains hidden or 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
| # hexo basic command completion | |
| _hexo_get_command_list () { | |
| hexo --no-ansi | awk '/(--|^ +[a-z]+)/{ print $1 }' | |
| } | |
| _hexo () { | |
| compadd `_hexo_get_command_list` | |
| } | |
| compdef _hexo hexo | |
| alias hes="hexo server" | |
| alias heg="hexo generate" | |
| alias hed="hexo deploy" |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
put into : ~/.oh-my-zsh/plugins/hexo/
and add hexo to your .zshrc plugins