Update of /cvsroot/pythoncard/PythonCard
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1896
Modified Files:
install-pythoncard.py
Log Message:
added tabCodeEditor.py to shortcuts (Tabbed Code Editor)
maybe there is a better name for this editor?
Index: install-pythoncard.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/install-pythoncard.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** install-pythoncard.py 28 Mar 2005 05:42:40 -0000 1.7
--- install-pythoncard.py 25 Dec 2005 14:53:26 -0000 1.8
***************
*** 77,80 ****
--- 77,87 ----
file_created(path)
+ path = os.path.join(dest_dir, "Tabbed Code Editor.lnk")
+ arguments = os.path.join(lib_dir,
+ "PythonCard\\tools\\oneEditor\\tabcodeEditor.py")
+
+ create_shortcut(pythonw, "Tabbed Code Editor", path, arguments)
+ file_created(path)
+
path = os.path.join(dest_dir, "Find Files.lnk")
|