-
Notifications
You must be signed in to change notification settings - Fork 47
/
Main.sublime-menu
62 lines (62 loc) · 2.47 KB
/
Main.sublime-menu
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
[
{
"id": "edit",
"children":
[
{
"id": "convert_case",
"children":
[
{ "command": "convert_to_snake", "caption": "snake_case" },
{ "command": "convert_to_screaming_snake", "caption": "SCREAMING_SNAKE_CASE" },
{ "command": "convert_to_camel", "caption": "camelCase" },
{ "command": "convert_to_pascal", "caption": "PascalCase" },
{ "command": "convert_to_dot", "caption": "dot.case" },
{ "command": "convert_to_dash", "caption": "dash-case" },
{ "command": "convert_to_separate_words", "caption": "separate␣words" },
{ "command": "convert_to_slash", "caption": "separate/with/slash" },
{ "command": "convert_to_back_slash", "caption": "separate\\with\\backslash" },
{ "command": "toggle_snake_camel_pascal", "caption": "Toggle Case" }
]
}
]
},
{
"caption": "Preferences",
"mnemonic": "n",
"id": "preferences",
"children":
[
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":
[
{
"caption": "Case Conversion",
"children":
[
{
"command": "edit_settings",
"args": {
"base_file": "${packages}/Case Conversion/CaseConversion.sublime-settings",
"default": "// Settings in here override those in \"Case Conversion/CaseConversion.sublime-settings\",\n\n{\n\t$0\n}\n"
},
"caption": "Settings"
},
{
"command": "edit_settings",
"args": {
"base_file": "${packages}/Case Conversion/Default ($platform).sublime-keymap",
"default": "// Settings in here override those in \"Case Conversion/Default.sublime-settings\",\n\n{\n\t$0\n}\n"
},
"caption": "Key Bindings"
}
]
}
]
}
]
}
]