Skip to content

Commit

Permalink
extract plugin will unzip *.sublime-package files
Browse files Browse the repository at this point in the history
  • Loading branch information
fbehrens authored and ncanceill committed May 26, 2014
1 parent 1ad1c52 commit 6fc241b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/extract/extract.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function extract() {
(*.xz) unxz "$1" ;;
(*.lzma) unlzma "$1" ;;
(*.Z) uncompress "$1" ;;
(*.zip|*.war|*.jar) unzip "$1" -d $extract_dir ;;
(*.zip|*.war|*.jar|*.sublime-package) unzip "$1" -d $extract_dir ;;
(*.rar) unrar x -ad "$1" ;;
(*.7z) 7za x "$1" ;;
(*.deb)
Expand Down

0 comments on commit 6fc241b

Please sign in to comment.