Merge pull request #488 from mimoralea/rename-http-alias

Rename http alias
pull/483/merge
Nils Winkler 2015-05-31 15:21:11 +02:00
commit b2b36bb4c8
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
cite about-plugin
about-plugin 'alias "http" to SimpleHTTPServer'
about-plugin 'alias "shttp" to SimpleHTTPServer'
if [ $(uname) = "Linux" ]
then
alias http='python2 -m SimpleHTTPServer'
alias shttp='python2 -m SimpleHTTPServer'
else
alias http='python -m SimpleHTTPServer'
alias shttp='python -m SimpleHTTPServer'
fi
function pyedit() {