forked from deathaxe/sublime-gitformats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
98 lines (93 loc) · 2.58 KB
/
Default.sublime-commands
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[
{
"caption": "User: Edit .gitconfig",
"command": "git_open_file",
"args": {
"name": "~/.gitconfig",
"syntax": "Git Config.sublime-syntax"
}
},
{
"caption": "User: Edit .gitignore",
"command": "git_open_file",
"args": {"name": "~/.gitignore"}
},
{
"caption": "Repository: Edit config",
"command": "git_open_file",
"args": {
"name": "$GIT_COMMON_DIR/config",
"syntax": "Git Config.sublime-syntax"
}
},
{
"caption": "Repository: Edit exclude",
"command": "git_open_file",
"args": {
"name": "$GIT_COMMON_DIR/info/exclude",
"syntax": "Git Ignore.sublime-syntax"
}
},
{
"caption": "Repository: Edit sparse-checkout",
"command": "git_open_file",
"args": {
"name": "$GIT_COMMON_DIR/info/sparse-checkout",
"syntax": "Git Ignore.sublime-syntax"
}
},
{
"caption": "Repository: Edit .gitattributes",
"command": "git_open_file",
"args": {"name": "$GIT_SUPER_WORK_TREE/.gitattributes"}
},
{
"caption": "Repository: Edit .gitignore",
"command": "git_open_file",
"args": {"name": "$GIT_SUPER_WORK_TREE/.gitignore"}
},
{
"caption": "Repository: Edit .gitmodules",
"command": "git_open_file",
"args": {"name": "$GIT_SUPER_WORK_TREE/.gitmodules"}
},
{
"caption": "Worktree: Edit config",
"command": "git_open_file",
"args": {
"name": "$GIT_DIR/config",
"syntax": "Git Config.sublime-syntax"
}
},
{
"caption": "Worktree: Edit exclude",
"command": "git_open_file",
"args": {
"name": "$GIT_DIR/info/exclude",
"syntax": "Git Ignore.sublime-syntax"
}
},
{
"caption": "Worktree: Edit sparse-checkout",
"command": "git_open_file",
"args": {
"name": "$GIT_DIR/info/sparse-checkout",
"syntax": "Git Ignore.sublime-syntax"
}
},
{
"caption": "Worktree: Edit .gitattributes",
"command": "git_open_file",
"args": {"name": "$GIT_WORK_TREE/.gitattributes"}
},
{
"caption": "Worktree: Edit .gitignore",
"command": "git_open_file",
"args": {"name": "$GIT_WORK_TREE/.gitignore"}
},
{
"caption": "Worktree: Edit .gitmodules",
"command": "git_open_file",
"args": {"name": "$GIT_WORK_TREE/.gitmodules"}
}
]