diff options
author | Robby Russell <robby@planetargon.com> | 2014-02-23 06:58:43 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-02-23 06:58:43 -0800 |
commit | 2eb68a4e290d3c3566ec86d654ec6ade85e44105 (patch) | |
tree | da3ffd7a43d676fec9ed6197b0e1ebb4b0fc7d93 | |
parent | 598a9c6f990756386517d66b6bcf77e53791e905 (diff) | |
parent | bd4f7e24ea1451eeab351b0a68ac3729213b369b (diff) | |
download | zsh-2eb68a4e290d3c3566ec86d654ec6ade85e44105.tar.gz zsh-2eb68a4e290d3c3566ec86d654ec6ade85e44105.tar.bz2 zsh-2eb68a4e290d3c3566ec86d654ec6ade85e44105.zip |
Merge pull request #2544 from fduch2k/patch-1
Update gitignore.plugin.zsh
-rw-r--r-- | plugins/gitignore/gitignore.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gitignore/gitignore.plugin.zsh b/plugins/gitignore/gitignore.plugin.zsh index be3c3a635..be037d87a 100644 --- a/plugins/gitignore/gitignore.plugin.zsh +++ b/plugins/gitignore/gitignore.plugin.zsh @@ -1,7 +1,7 @@ function gi() { curl http://www.gitignore.io/api/$@ ;} _gitignireio_get_command_list() { - curl -s http://gitignore.io/api/list | tr "," "\n" + curl -s http://www.gitignore.io/api/list | tr "," "\n" } _gitignireio () { @@ -9,4 +9,4 @@ _gitignireio () { compadd -S '' `_gitignireio_get_command_list` } -compdef _gitignireio gi
\ No newline at end of file +compdef _gitignireio gi |