-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDefault.sublime-commands
executable file
·52 lines (52 loc) · 1.86 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
[
{
"caption": "ChineseConvert: Simplified Chinese to Traditional Chinese",
"command": "chinese_convert",
"args":{"to":"s2t.json"}
},
{
"caption": "ChineseConvert: Traditional Chinese to Simplified Chinese",
"command": "chinese_convert",
"args":{"to":"t2s.json"}
},
{
"caption": "ChineseConvert: Simplified Chinese to Traditional Chinese (Taiwan Standard)",
"command": "chinese_convert",
"args":{"to":"s2tw.json"}
},
{
"caption": "ChineseConvert: Traditional Chinese (Taiwan Standard) to Simplified Chinese",
"command": "chinese_convert",
"args":{"to":"tw2s.json"}
},
{
"caption": "ChineseConvert: Simplified Chinese to Traditional Chinese (Hong Kong Standard)",
"command": "chinese_convert",
"args":{"to":"s2hk.json"}
},
{
"caption": "ChineseConvert: Traditional Chinese (Hong Kong Standard) to Simplified Chinese",
"command": "chinese_convert",
"args":{"to":"hk2s.json"}
},
{
"caption": "ChineseConvert: Simplified Chinese to Traditional Chinese (Taiwan Standard) with Taiwanese idiom",
"command": "chinese_convert",
"args":{"to":"s2twp.json"}
},
{
"caption": "ChineseConvert: Traditional Chinese (Taiwan Standard) to Simplified Chinese with Mainland Chinese idiom",
"command": "chinese_convert",
"args":{"to":"tw2sp.json"}
},
{
"caption": "ChineseConvert: Traditional Chinese (OpenCC Standard) to Taiwan Standard",
"command": "chinese_convert",
"args":{"to":"t2tw.json"}
},
{
"caption": "ChineseConvert: Traditional Chinese (OpenCC Standard) to Hong Kong Standard",
"command": "chinese_convert",
"args":{"to":"t2hk.json"}
},
]