diff options
author | Brian McKenna <brian@simpleenergy.com> | 2014-02-18 14:43:42 -0700 |
---|---|---|
committer | Brian McKenna <brian@simpleenergy.com> | 2014-02-18 14:43:42 -0700 |
commit | 1df7d01618f06cc80b7f9d14bd088c70e6382d33 (patch) | |
tree | c85d5a750f3ea449aa845878e8a99830f8e6c898 /plugins/gitignore | |
parent | 4ce7f0a37f9a13c605225e2a595ad1bdf6171065 (diff) | |
download | zsh-1df7d01618f06cc80b7f9d14bd088c70e6382d33.tar.gz zsh-1df7d01618f06cc80b7f9d14bd088c70e6382d33.tar.bz2 zsh-1df7d01618f06cc80b7f9d14bd088c70e6382d33.zip |
Fix URL to gi (gitignore) function
Previous URL doesn't seem to work because the host requires a www
prefix.
Diffstat (limited to 'plugins/gitignore')
-rw-r--r-- | plugins/gitignore/gitignore.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gitignore/gitignore.plugin.zsh b/plugins/gitignore/gitignore.plugin.zsh index 332497cec..be3c3a635 100644 --- a/plugins/gitignore/gitignore.plugin.zsh +++ b/plugins/gitignore/gitignore.plugin.zsh @@ -1,4 +1,4 @@ -function gi() { curl http://gitignore.io/api/$@ ;} +function gi() { curl http://www.gitignore.io/api/$@ ;} _gitignireio_get_command_list() { curl -s http://gitignore.io/api/list | tr "," "\n" |