aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--connectbot.sublime-project36
2 files changed, 37 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 61075a9..485e248 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ gen
launchpad-*.tar.gz
local.properties
*~
+*.sublime-workspace
diff --git a/connectbot.sublime-project b/connectbot.sublime-project
new file mode 100644
index 0000000..e35ca4e
--- /dev/null
+++ b/connectbot.sublime-project
@@ -0,0 +1,36 @@
+{
+ "folders":
+ [
+ {
+ "path": ".",
+ "folder_exclude_patterns": ["bin", "gen"]
+ }
+ ],
+ "build_systems":
+ [
+ {
+ "name": "Android Debug",
+ "cmd": ["ant", "debug"],
+ "file_regex": "^ *\\[javac\\] (.+):([0-9]+):() (.*)$",
+ "working_dir": "${project_path:${folder}}",
+ "selector": "source.java",
+
+ "windows":
+ {
+ "cmd": ["ant.bat", "debug"]
+ },
+
+ "variants":
+ [
+ {
+ "name": "Run",
+ "cmd": ["ant", "debug", "install"],
+ "windows":
+ {
+ "cmd": ["ant.bat", "debug", "install"]
+ }
+ }
+ ]
+ }
+ ]
+}