diff options
-rwxr-xr-x | plugins/bgnotify/bgnotify.plugin.zsh | 2 | ||||
-rw-r--r-- | plugins/grunt/grunt.plugin.zsh | 12 |
2 files changed, 8 insertions, 6 deletions
diff --git a/plugins/bgnotify/bgnotify.plugin.zsh b/plugins/bgnotify/bgnotify.plugin.zsh index 259d27424..5ccead3b8 100755 --- a/plugins/bgnotify/bgnotify.plugin.zsh +++ b/plugins/bgnotify/bgnotify.plugin.zsh @@ -34,7 +34,7 @@ bgnotify () { if hash notify-send 2>/dev/null; then #ubuntu! notify-send $1 $2 elif hash terminal-notifier 2>/dev/null; then #osx - terminal-notifier -message $2 -title $1 + terminal-notifier -message "$2" -title "$1" elif hash growlnotify 2>/dev/null; then #osx growl growlnotify -m $1 $2 elif hash notifu 2>/dev/null; then #cygwyn support! diff --git a/plugins/grunt/grunt.plugin.zsh b/plugins/grunt/grunt.plugin.zsh index 48f6cb5a2..3f9695177 100644 --- a/plugins/grunt/grunt.plugin.zsh +++ b/plugins/grunt/grunt.plugin.zsh @@ -1,4 +1,5 @@ #compdef grunt +#autoload # ----------------------------------------------------------------------------- # _grunt # @@ -8,11 +9,11 @@ # # ----------------------------------------------------------------------------- # -# Version : 0.1.0 +# Version : 0.1.2 # Author : Yonchu <yuyuchu3333@gmail.com> # License : MIT License # Repository : https://github.com/yonchu/grunt-zsh-completion -# Last Change : 22 Jul 2013. +# Last Change : 20 Aug 2014. # # Copyright (c) 2013 Yonchu. # @@ -46,7 +47,7 @@ # # ----------------------------------------------------------------------------- -function _grunt() { +function __grunt() { local curcontext="$curcontext" update_policy state local show_grunt_path update_msg gruntfile opts tasks @@ -113,7 +114,7 @@ function _grunt() { # The cache variable name: __grunt_version __grunt_gruntfile __grunt_opts __grunt_tasks function __grunt_update_cache() { # TODO - local version='0.1.0' + local version='0.1.2' local is_updating=0 local gruntfile="$1" local grunt_info no_update_options cache_path @@ -177,6 +178,7 @@ function __grunt_get_tasks() { | grep 'Available tasks' -A 100 \ | grep '^ ' \ | sed -e 's/^[[:blank:]]*//' -e 's/[[:blank:]]*$//' \ + | sed -e 's/:/\\:/g' \ | sed -e 's/ /:/' } @@ -250,4 +252,4 @@ function __grunt_caching_policy() { (( $#oldp )) } -compdef _grunt grunt +compdef __grunt grunt
\ No newline at end of file |