-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDefault.sublime-commands
107 lines (107 loc) · 3.1 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
99
100
101
102
103
104
105
106
107
[
{
"caption": "Licence Snippet: Apache Licence 2.0 [Header]",
"command": "insert_licence",
"args": {"name": "Apache-2.0.header"}
},
{
"caption": "Licence Snippet: Apache Licence 2.0 [Full Text]",
"command": "insert_licence",
"args": {"name": "Apache-2.0.full"}
},
{
"caption": "Licence Snippet: Artistic Licence v2.0 [Full Text]",
"command": "insert_licence",
"args": {"name": "Artistic-2.0.full"}
},
{
"caption": "Licence Snippet: BSD 2-Clause [Header] [Full Text]",
"command": "insert_licence",
"args": {"name": "BSD-2-Clause.full"}
},
{
"caption": "Licence Snippet: BSD 3-Clause [Header] [Full Text]",
"command": "insert_licence",
"args": {"name": "BSD-3-Clause.full"}
},
{
"caption": "Licence Snippet: Eclipse Public Licence v1.0 [Header]",
"command": "insert_licence",
"args": {"name": "EPL-1.0.header"}
},
{
"caption": "Licence Snippet: Eclipse Public Licence v1.0 [Full Text]",
"command": "insert_licence",
"args": {"name": "EPL-1.0.full"}
},
{
"caption": "Licence Snippet: GNU Affero GPL v3.0 [Header]",
"command": "insert_licence",
"args": {"name": "AGPL-3.0.header"}
},
{
"caption": "Licence Snippet: GNU Affero GPL v3.0 [Full Text]",
"command": "insert_licence",
"args": {"name": "AGPL-3.0.full"}
},
{
"caption": "Licence Snippet: GNU GPL v2.0 [Header]",
"command": "insert_licence",
"args": {"name": "GPL-2.0.header"}
},
{
"caption": "Licence Snippet: GNU GPL v2.0 [Full Text]",
"command": "insert_licence",
"args": {"name": "GPL-2.0.full"}
},
{
"caption": "Licence Snippet: GNU GPL v3.0 [Header]",
"command": "insert_licence",
"args": {"name": "GPL-3.0.header"}
},
{
"caption": "Licence Snippet: GNU GPL v3.0 [Full Text]",
"command": "insert_licence",
"args": {"name": "GPL-3.0.full"}
},
{
"caption": "Licence Snippet: GNU LGPL v2.1 [Header]",
"command": "insert_licence",
"args": {"name": "LGPL-2.1.header"}
},
{
"caption": "Licence Snippet: GNU LGPL v2.1 [Full Text]",
"command": "insert_licence",
"args": {"name": "LGPL-2.1.full"}
},
{
"caption": "Licence Snippet: GNU LGPL v3.0 [Header]",
"command": "insert_licence",
"args": {"name": "LGPL-3.0.header"}
},
{
"caption": "Licence Snippet: GNU LGPL v3.0 [Full Text]",
"command": "insert_licence",
"args": {"name": "LGPL-3.0.full"}
},
{
"caption": "Licence Snippet: ISC Licence [Header] [Full Text]",
"command": "insert_licence",
"args": {"name": "ISC.full"}
},
{
"caption": "Licence Snippet: MIT Licence [Header] [Full Text]",
"command": "insert_licence",
"args": {"name": "MIT.full"}
},
{
"caption": "Licence Snippet: Mozilla Public Licence v2.0 [Header]",
"command": "insert_licence",
"args": {"name": "MPL-2.0.header"}
},
{
"caption": "Licence Snippet: Mozilla Public Licence v2.0 [Full Text]",
"command": "insert_licence",
"args": {"name": "MPL-2.0.full"}
}
]