From 567289185a9bb913de900d41abf622c6eff21d2d Mon Sep 17 00:00:00 2001 From: Miguel Morales Date: Sun, 24 May 2015 18:11:14 -0500 Subject: [PATCH] Alias collides with httpie binary It would be nice to still have this alias but not colliding with the awesome httpie tool: https://github.com/jakubroztocil/httpie --- plugins/available/python.plugin.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/available/python.plugin.bash b/plugins/available/python.plugin.bash index 51970786..3215bfda 100644 --- a/plugins/available/python.plugin.bash +++ b/plugins/available/python.plugin.bash @@ -1,11 +1,11 @@ cite about-plugin -about-plugin 'alias "http" to SimpleHTTPServer' +about-plugin 'alias "https" to SimpleHTTPServer' if [ $(uname) = "Linux" ] then - alias http='python2 -m SimpleHTTPServer' + alias https='python2 -m SimpleHTTPServer' else - alias http='python -m SimpleHTTPServer' + alias https='python -m SimpleHTTPServer' fi function pyedit() {