-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathlanguage_construct.sublime-completions
More file actions
102 lines (101 loc) · 7.95 KB
/
language_construct.sublime-completions
File metadata and controls
102 lines (101 loc) · 7.95 KB
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
{
// scope:
//
// source.php
// blacklist:
// comment
// constant.other.class
// entity.name
// meta.catch
// meta.class
// meta.function.arguments
// meta.use
// string
// variable.language
// variable.other
// variable.parameter
// source.php meta.class.php meta.block.php
// blacklist:
// comment
// constant.other.class
// entity.name
// meta.catch
// meta.function.arguments
// meta.function.parameters
// meta.use
// string
// variable.language
// variable.other
// variable.parameter
// meta.function.return-type
"scope": "source.php - comment - constant.other.class - entity.name - meta.catch - meta.class - meta.function.arguments - meta.use - string - variable.language - variable.other - variable.parameter, source.php meta.class.php meta.block.php - comment - constant.other.class - entity.name - meta.catch - meta.function.arguments - meta.function.parameters - meta.use - string - variable.language - variable.other - variable.parameter - meta.function.return-type",
"completions": [
{"trigger":"__halt_compiler","contents":"__halt_compiler(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"abstract","contents":"abstract","kind":"keyword","annotation":"Language construct"},
{"trigger":"and","contents":"and","kind":"keyword","annotation":"Language construct"},
{"trigger":"array","contents":"array(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"as","contents":"as","kind":"keyword","annotation":"Language construct"},
{"trigger":"break","kind":"keyword","annotation":"Language construct"},
{"trigger":"callable","contents":"callable","kind":"keyword","annotation":"Language construct"},
{"trigger":"case","contents":"case '${1}':","kind":"keyword","annotation":"Language construct"},
{"trigger":"catch","contents":"catch (${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"class","contents":"class","kind":"keyword","annotation":"Language construct"},
{"trigger":"clone","contents":"clone","kind":"keyword","annotation":"Language construct"},
{"trigger":"const","contents":"const","kind":"keyword","annotation":"Language construct"},
{"trigger":"continue","kind":"keyword","annotation":"Language construct"},
{"trigger":"declare","contents":"declare(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"default","contents":"default:","kind":"keyword","annotation":"Language construct"},
{"trigger":"die","contents":"die(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"do","contents":"do","kind":"keyword","annotation":"Language construct"},
{"trigger":"echo","contents":"echo","kind":"keyword","annotation":"Language construct"},
{"trigger":"else","contents":"else","kind":"keyword","annotation":"Language construct"},
{"trigger":"elseif","contents":"elseif (${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"empty","contents":"empty(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"enddeclare","contents":"enddeclare;","kind":"keyword","annotation":"Language construct"},
{"trigger":"endfor","contents":"endfor;","kind":"keyword","annotation":"Language construct"},
{"trigger":"endforeach","contents":"endforeach;","kind":"keyword","annotation":"Language construct"},
{"trigger":"endif","contents":"endif;","kind":"keyword","annotation":"Language construct"},
{"trigger":"endswitch","contents":"endswitch;","kind":"keyword","annotation":"Language construct"},
{"trigger":"endwhile","contents":"endwhile;","kind":"keyword","annotation":"Language construct"},
{"trigger":"eval","contents":"eval(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"exit","contents":"exit(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"extends","contents":"extends","kind":"keyword","annotation":"Language construct"},
{"trigger":"final","contents":"final","kind":"keyword","annotation":"Language construct"},
{"trigger":"finally","contents":"finally {\\n\\t${1}\\n}","kind":"keyword","annotation":"Language construct"},
{"trigger":"for","contents":"for (${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"foreach","contents":"foreach (${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"function","contents":"function","kind":"keyword","annotation":"Language construct"},
{"trigger":"global","contents":"global","kind":"keyword","annotation":"Language construct"},
{"trigger":"goto","contents":"goto","kind":"keyword","annotation":"Language construct"},
{"trigger":"if","contents":"if (${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"implements","contents":"implements","kind":"keyword","annotation":"Language construct"},
{"trigger":"include","contents":"include '${1}';","kind":"keyword","annotation":"Language construct"},
{"trigger":"include_once","contents":"include_once '${1}';","kind":"keyword","annotation":"Language construct"},
{"trigger":"instanceof","contents":"instanceof","kind":"keyword","annotation":"Language construct"},
{"trigger":"insteadof","contents":"insteadof","kind":"keyword","annotation":"Language construct"},
{"trigger":"interface","contents":"interface","kind":"keyword","annotation":"Language construct"},
{"trigger":"isset","contents":"isset(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"list","contents":"list(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"namespace","contents":"namespace","kind":"keyword","annotation":"Language construct"},
{"trigger":"new","contents":"new","kind":"keyword","annotation":"Language construct"},
{"trigger":"or","contents":"or","kind":"keyword","annotation":"Language construct"},
{"trigger":"print","contents":"print","kind":"keyword","annotation":"Language construct"},
{"trigger":"private","contents":"private","kind":"keyword","annotation":"Language construct"},
{"trigger":"protected","contents":"protected","kind":"keyword","annotation":"Language construct"},
{"trigger":"public","contents":"public","kind":"keyword","annotation":"Language construct"},
{"trigger":"require","contents":"require '${1}';","kind":"keyword","annotation":"Language construct"},
{"trigger":"require_once","contents":"require_once '${1}';","kind":"keyword","annotation":"Language construct"},
{"trigger":"return","contents":"return","kind":"keyword","annotation":"Language construct"},
{"trigger":"static","contents":"static","kind":"keyword","annotation":"Language construct"},
{"trigger":"switch","contents":"switch (${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"throw","contents":"throw","kind":"keyword","annotation":"Language construct"},
{"trigger":"trait","contents":"trait","kind":"keyword","annotation":"Language construct"},
{"trigger":"try","contents":"try {\\n\\t${1}\\n}","kind":"keyword","annotation":"Language construct"},
{"trigger":"unset","contents":"unset(${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"use","contents":"use","kind":"keyword","annotation":"Language construct"},
{"trigger":"var","contents":"var","kind":"keyword","annotation":"Language construct"},
{"trigger":"while","contents":"while (${1})","kind":"keyword","annotation":"Language construct"},
{"trigger":"xor","contents":"xor","kind":"keyword","annotation":"Language construct"},
{"trigger":"yield","contents":"yield","kind":"keyword","annotation":"Language construct"}
]
}