예제 #1
0
파일: myinspect.py 프로젝트: sw561/tomato
def edit_plan():
	os.system('vim {} -c "set et"'.format(plan_path()))
	plan()
예제 #2
0
파일: myinspect.py 프로젝트: sw561/tomato
def edit_plan():
	os.system("vim %s" % plan_path())
	plan()
예제 #3
0
파일: myinspect.py 프로젝트: sw561/tomato
def plan():
	renumber(plan_path())
	with open(plan_path(),"r") as f:
		for line in f: print line.rstrip()
	print "\nTo edit the plan use edit_plan()"
예제 #4
0
파일: myinspect.py 프로젝트: sw561/tomato
def plan():
	renumber(plan_path())
	with open(plan_path(),"r") as f:
		for line in f: print line.strip()
	print "\nTo edit the plan use edit_plan()"