diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-07-14 12:45:15 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-07-14 12:45:15 +0200 |
commit | c544101eed30d5656746080204f53a2563b3d535 (patch) | |
tree | ee8557dd7f2d90c251c3316882c871b4a85475bc | |
parent | 29d94c622a7f6f696d899e5bb3484c925b5d4441 (diff) | |
download | gitpython-c544101eed30d5656746080204f53a2563b3d535.tar.gz |
Added sublime-text project
As relative paths are used througout, it will work for everyone using
sublime text out of the box.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | etc/sublime-text/git-python.sublime-project | 71 |
2 files changed, 72 insertions, 0 deletions
@@ -8,3 +8,4 @@ cover/ /dist /doc/_build nbproject +*.sublime-workspace diff --git a/etc/sublime-text/git-python.sublime-project b/etc/sublime-text/git-python.sublime-project new file mode 100644 index 00000000..5d981925 --- /dev/null +++ b/etc/sublime-text/git-python.sublime-project @@ -0,0 +1,71 @@ +{ + "folders": + [ + // GIT-PYTHON + ///////////// + { + "follow_symlinks": true, + "path": "../..", + "file_exclude_patterns" : [ + "*.sublime-workspace", + ".git", + ".noseids", + ".coverage" + ], + "folder_exclude_patterns" : [ + ".git", + "cover", + "git/ext" + ] + }, + // GITDB + //////// + { + "follow_symlinks": true, + "path": "../../git/ext/gitdb", + "file_exclude_patterns" : [ + "*.sublime-workspace", + ".git", + ".noseids", + ".coverage" + ], + "folder_exclude_patterns" : [ + ".git", + "cover", + "gitdb/ext" + ] + }, + // SMMAP + //////// + { + "follow_symlinks": true, + "path": "../../git/ext/gitdb/gitdb/ext/smmap", + "file_exclude_patterns" : [ + "*.sublime-workspace", + ".git", + ".noseids", + ".coverage" + ], + "folder_exclude_patterns" : [ + ".git", + "cover", + ] + }, + // ASYNC + //////// + { + "follow_symlinks": true, + "path": "../../git/ext/gitdb/gitdb/ext/async", + "file_exclude_patterns" : [ + "*.sublime-workspace", + ".git", + ".noseids", + ".coverage" + ], + "folder_exclude_patterns" : [ + ".git", + "cover", + ] + }, + ] +} |