32 lines
783 B
Bash
32 lines
783 B
Bash
cite about-plugin
|
|
about-plugin 'alias "http" to SimpleHTTPServer'
|
|
|
|
if [ $(uname) = "Linux" ]
|
|
then
|
|
alias http='python2 -m SimpleHTTPServer'
|
|
else
|
|
alias http='python -m SimpleHTTPServer'
|
|
fi
|
|
|
|
function pyedit() {
|
|
about 'opens python module in your EDITOR'
|
|
param '1: python module to open'
|
|
example '$ pyedit requests'
|
|
group 'python'
|
|
|
|
xpyc=`python -c "import sys; stdout = sys.stdout; sys.stdout = sys.stderr; import $1; stdout.write($1.__file__)"`
|
|
|
|
if [ "$xpyc" == "" ]; then
|
|
echo "Python module $1 not found"
|
|
return -1
|
|
|
|
elif [[ $xpyc == *__init__.py* ]]; then
|
|
xpydir=`dirname $xpyc`;
|
|
echo "$EDITOR $xpydir";
|
|
$EDITOR "$xpydir";
|
|
else
|
|
echo "$EDITOR ${xpyc%.*}.py";
|
|
$EDITOR "${xpyc%.*}.py";
|
|
fi
|
|
}
|