diff options
author | Robby Russell <robby@planetargon.com> | 2013-10-24 20:26:20 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-10-24 20:26:20 -0700 |
commit | 9f88fb522901579242e1aaf99e420efd90fd0205 (patch) | |
tree | b992cc8c8209a0da52eac054493201fd39b4c52f /custom | |
parent | e44c147e25ec5dfbf20d5b98544c8b8484abd856 (diff) | |
parent | c5902d3f3498f9cd7553f358f2bf741b0784dbd0 (diff) | |
download | zsh-9f88fb522901579242e1aaf99e420efd90fd0205.tar.gz zsh-9f88fb522901579242e1aaf99e420efd90fd0205.tar.bz2 zsh-9f88fb522901579242e1aaf99e420efd90fd0205.zip |
Merge pull request #2165 from kevinxucs/custom-gitignore-fix
gitignore fix for custom folder.
Diffstat (limited to 'custom')
-rw-r--r-- | custom/plugins/gitignore/gitignore.plugin.zsh | 12 | ||||
-rw-r--r-- | custom/plugins/sfffe/sfffe.plugin.zsh | 28 |
2 files changed, 0 insertions, 40 deletions
diff --git a/custom/plugins/gitignore/gitignore.plugin.zsh b/custom/plugins/gitignore/gitignore.plugin.zsh deleted file mode 100644 index 332497cec..000000000 --- a/custom/plugins/gitignore/gitignore.plugin.zsh +++ /dev/null @@ -1,12 +0,0 @@ -function gi() { curl http://gitignore.io/api/$@ ;} - -_gitignireio_get_command_list() { - curl -s http://gitignore.io/api/list | tr "," "\n" -} - -_gitignireio () { - compset -P '*,' - compadd -S '' `_gitignireio_get_command_list` -} - -compdef _gitignireio gi
\ No newline at end of file diff --git a/custom/plugins/sfffe/sfffe.plugin.zsh b/custom/plugins/sfffe/sfffe.plugin.zsh deleted file mode 100644 index a0f034908..000000000 --- a/custom/plugins/sfffe/sfffe.plugin.zsh +++ /dev/null @@ -1,28 +0,0 @@ -# ------------------------------------------------------------------------------ -# FILE: sfffe.plugin.zsh -# DESCRIPTION: search file for FE -# AUTHOR: yleo77 (ylep77@gmail.com) -# VERSION: 0.1 -# REQUIRE: ack -# ------------------------------------------------------------------------------ - -if [ ! -x $(which ack) ]; then - echo \'ack\' is not installed! - exit -1 -fi - -ajs() { - ack "$@" --type js -} - -acss() { - ack "$@" --type css -} - -fjs() { - find ./ -name "$@*" -type f | grep '\.js' -} - -fcss() { - find ./ -name "$@*" -type f | grep '\.css' -} |