You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
307 B
9 lines
307 B
9 years ago
|
import comm
|
||
|
import subprocess
|
||
|
import os
|
||
|
|
||
|
def start_editor(reqid):
|
||
|
script_loc = os.path.join(os.path.dirname(__file__), "vim_repeater", "repeater.vim")
|
||
|
#print "RepeaterSetup %d %d"%(reqid, comm_port)
|
||
|
subprocess.call(["vim", "-S", script_loc, "-c", "RepeaterSetup %d %d"%(reqid, comm.comm_port)])
|