Skip to content

Commit c544101

Browse files
committed
Added sublime-text project
As relative paths are used througout, it will work for everyone using sublime text out of the box.
1 parent 29d94c6 commit c544101

File tree

2 files changed

+72
-0
lines changed

2 files changed

+72
-0
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ cover/
88
/dist
99
/doc/_build
1010
nbproject
11+
*.sublime-workspace

Diff for: etc/sublime-text/git-python.sublime-project

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"folders":
3+
[
4+
// GIT-PYTHON
5+
/////////////
6+
{
7+
"follow_symlinks": true,
8+
"path": "../..",
9+
"file_exclude_patterns" : [
10+
"*.sublime-workspace",
11+
".git",
12+
".noseids",
13+
".coverage"
14+
],
15+
"folder_exclude_patterns" : [
16+
".git",
17+
"cover",
18+
"git/ext"
19+
]
20+
},
21+
// GITDB
22+
////////
23+
{
24+
"follow_symlinks": true,
25+
"path": "../../git/ext/gitdb",
26+
"file_exclude_patterns" : [
27+
"*.sublime-workspace",
28+
".git",
29+
".noseids",
30+
".coverage"
31+
],
32+
"folder_exclude_patterns" : [
33+
".git",
34+
"cover",
35+
"gitdb/ext"
36+
]
37+
},
38+
// SMMAP
39+
////////
40+
{
41+
"follow_symlinks": true,
42+
"path": "../../git/ext/gitdb/gitdb/ext/smmap",
43+
"file_exclude_patterns" : [
44+
"*.sublime-workspace",
45+
".git",
46+
".noseids",
47+
".coverage"
48+
],
49+
"folder_exclude_patterns" : [
50+
".git",
51+
"cover",
52+
]
53+
},
54+
// ASYNC
55+
////////
56+
{
57+
"follow_symlinks": true,
58+
"path": "../../git/ext/gitdb/gitdb/ext/async",
59+
"file_exclude_patterns" : [
60+
"*.sublime-workspace",
61+
".git",
62+
".noseids",
63+
".coverage"
64+
],
65+
"folder_exclude_patterns" : [
66+
".git",
67+
"cover",
68+
]
69+
},
70+
]
71+
}

0 commit comments

Comments
 (0)