##// END OF EJS Templates
Add magic for cls on windows. Fix for #181.
Jörgen Stenarson -
Show More
@@ -3611,5 +3611,11 b' Defaulting color scheme to \'NoColor\'"""'
3611 with open(new_fname, 'w') as f:
3611 with open(new_fname, 'w') as f:
3612 current.write(nb, f, new_format)
3612 current.write(nb, f, new_format)
3613
3613
3614 if sys.platform == 'win32':
3615 def magic_cls(self, s):
3616 """Clear screen.
3617 """
3618 os.system("cls")
3619
3614
3620
3615 # end Magic
3621 # end Magic
General Comments 0
You need to be logged in to leave comments. Login now