Remove opening sublime in new window

This commit is contained in:
Anton Vakhrushev 2016-07-10 16:46:30 +03:00
parent af2c11b8dd
commit c6489e0bbb

View File

@ -62,7 +62,7 @@ def touch_file(full_path):
def run_editor(full_path): def run_editor(full_path):
subprocess.Popen(['subl', '--new-window', full_path]) subprocess.Popen(['subl', full_path])
if __name__ == '__main__': if __name__ == '__main__':