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
324 B
9 lines
324 B
import subprocess |
|
import os |
|
|
|
from pappyproxy import comm |
|
|
|
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 %s %d"%(reqid, comm.comm_port)])
|
|
|