Example #1
0
def edit_plan():
	os.system('vim {} -c "set et"'.format(plan_path()))
	plan()
Example #2
0
def edit_plan():
	os.system("vim %s" % plan_path())
	plan()
Example #3
0
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()"
Example #4
0
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()"