@@ -0,0 +1,22 @@
+#!/bin/sh
+
+if [ $# -lt 1 ] ; then
+ echo "edit-user-script name [type]"
+ exit
+fi
+NAME=$1
+shift
+TYPE=$1
+case $TYPE in
+ perl)
+ emacsclient --alternate-editor="" -n ~/bin/${NAME}.pl
+ ;;
+ python)
+ emacsclient --alternate-editor="" -n ~/bin/${NAME}.py
+ *)
+ emacsclient --alternate-editor="" -n ~/bin/${NAME}
+esac