mirror of https://github.com/jkjoy/sunpeiwen.git
25 lines
602 B
Bash
25 lines
602 B
Bash
#!/bin/zsh
|
|
|
|
# Borrowed from grunt-cli
|
|
# http://gruntjs.com/
|
|
#
|
|
# Copyright (c) 2012 Tyler Kellen, contributors
|
|
# Licensed under the MIT license.
|
|
# https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
|
|
|
|
# Usage:
|
|
#
|
|
# To enable zsh <tab> completion for hexo, add the following line (minus the
|
|
# leading #, which is the zsh comment character) to your ~/.zshrc file:
|
|
#
|
|
# eval "$(hexo --completion=zsh)"
|
|
|
|
# Enable zsh autocompletion.
|
|
function _hexo_completion() {
|
|
compls=$(hexo --console-list)
|
|
completions=(${=compls})
|
|
compadd -- $completions
|
|
}
|
|
|
|
compdef _hexo_completion hexo
|