From c6489e0bbbd1f1f9a0eaf8745dd604b1267e28d3 Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Sun, 10 Jul 2016 16:46:30 +0300 Subject: [PATCH] Remove opening sublime in new window --- diary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diary.py b/diary.py index 080f6e7..13b1a87 100755 --- a/diary.py +++ b/diary.py @@ -62,7 +62,7 @@ def touch_file(full_path): def run_editor(full_path): - subprocess.Popen(['subl', '--new-window', full_path]) + subprocess.Popen(['subl', full_path]) if __name__ == '__main__':