diff options
author | Marc Cornellà <marc.cornella@live.com> | 2019-11-21 02:26:18 +0100 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2019-11-20 17:26:18 -0800 |
commit | b80b1a1e8b30e5f2a7c4977019cf56e72c434037 (patch) | |
tree | 9847981294bba8c4c1a547267b33a202a0c2dc06 /plugins/urltools | |
parent | bb10c979ef22b2c5242dc0348b3ea3a1bf9b731d (diff) | |
download | zsh-b80b1a1e8b30e5f2a7c4977019cf56e72c434037.tar.gz zsh-b80b1a1e8b30e5f2a7c4977019cf56e72c434037.tar.bz2 zsh-b80b1a1e8b30e5f2a7c4977019cf56e72c434037.zip |
Actions to take after repository migration is complete (#8394)
* Change project URL from robbyrussell to ohmyzsh org
* Update git remote to use ohmyzsh org repository
Diffstat (limited to 'plugins/urltools')
-rw-r--r-- | plugins/urltools/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/urltools/README.md b/plugins/urltools/README.md index 548301c72..29c371070 100644 --- a/plugins/urltools/README.md +++ b/plugins/urltools/README.md @@ -21,9 +21,9 @@ Original idea and aliases: [Ruslan Spivak](https://ruslanspivak.wordpress.com/20 ## Examples ```zsh -urlencode 'https://github.com/robbyrussell/oh-my-zsh/search?q=urltools&type=Code' -# returns https%3A%2F%2Fgithub.com%2Frobbyrussell%2Foh-my-zsh%2Fsearch%3Fq%3Durltools%26type%3DCode +urlencode 'https://github.com/ohmyzsh/ohmyzsh/search?q=urltools&type=Code' +# returns https%3A%2F%2Fgithub.com%2Fohmyzsh%2Fohmyzsh%2Fsearch%3Fq%3Durltools%26type%3DCode -urldecode 'https%3A%2F%2Fgithub.com%2Frobbyrussell%2Foh-my-zsh%2Fsearch%3Fq%3Durltools%26type%3DCode' -# returns https://github.com/robbyrussell/oh-my-zsh/search?q=urltools&type=Code +urldecode 'https%3A%2F%2Fgithub.com%2Fohmyzsh%2Fohmyzsh%2Fsearch%3Fq%3Durltools%26type%3DCode' +# returns https://github.com/ohmyzsh/ohmyzsh/search?q=urltools&type=Code ``` |