Added Sublime Text 3 project.
David Blume

David Blume commited on 2016-08-14 12:41:48
Showing 1 changed files, with 27 additions and 0 deletions.

... ...
@@ -0,0 +1,27 @@
1
+{
2
+    "folders":
3
+    [
4
+        {
5
+            "path": ".",
6
+            "folder_exclude_patterns": [".idea"],
7
+            "file_exclude_patterns": ["tags", "*.pyc", "*.sublime-project"]
8
+        }
9
+    ],
10
+    "build_systems":
11
+    [
12
+        {
13
+            "name": "Run",
14
+            "working_dir": "$project_path",
15
+            "windows": {
16
+                "shell_cmd": "C:/Python27/python.exe testpython.py"
17
+            },
18
+            "osx": {
19
+                "shell_cmd": "./testpython.py"
20
+            },
21
+            "linux": {
22
+                "shell_cmd": "./testpython.py"
23
+            },
24
+            "file_regex": "^(...*?):([0-9]*):?([0-9]*)"
25
+        }
26
+    ]
27
+}
0 28