-
Notifications
You must be signed in to change notification settings - Fork 13
/
LanguageTool.sublime-commands
56 lines (56 loc) · 1.29 KB
/
LanguageTool.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
[
{
"caption": "LanguageTool: Check Text",
"command": "language_tool"
},
{
"caption": "LanguageTool: Check Text (Local Server)",
"command": "language_tool",
"args": {"force_server": "local"}
},
{
"caption": "LanguageTool: Check Text (Remote Server)",
"command": "language_tool",
"args": {"force_server": "remote"}
},
{
"caption": "LanguageTool: Next Problem",
"command": "goto_next_language_problem",
"args": {"jump_forward": true}
},
{
"caption": "LanguageTool: Previous Problem",
"command": "goto_next_language_problem",
"args": {"jump_forward": false}
},
{
"caption": "LanguageTool: Apply Suggested Correction(s)",
"command": "mark_language_problem_solved",
"args": {"apply_fix": true}
},
{
"caption": "LanguageTool: Ignore Problem",
"command": "mark_language_problem_solved",
"args": {"apply_fix": false}
},
{
"caption": "LanguageTool: Clear Problems",
"command": "clear_language_problems"
},
{
"caption": "LanguageTool: Change Language",
"command": "change_language_tool_language"
},
{
"caption": "LanguageTool: Deactivate Rule",
"command": "deactivate_rule"
},
{
"caption": "LanguageTool: Activate Rule",
"command": "activate_rule"
},
{
"caption": "LanguageTool: Start Local Server",
"command": "start_language_tool_server"
}
]