Skip to content

Commit

Permalink
Fix issue with command/keymap files
Browse files Browse the repository at this point in the history
  • Loading branch information
gtarawneh committed Feb 17, 2018
1 parent 2c967c5 commit 0b17db1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions Default (Linux).sublime-keymap
@@ -1,7 +1,7 @@
[
{ "keys": ["ctrl+shift+c"], "command": "language_tool" },
{ "keys": ["alt+down"], "command": "goto_next_language_problem", "args": { "jumpForward": true } },
{ "keys": ["alt+up"], "command": "goto_next_language_problem", "args": { "jumpForward": false } },
{ "keys": ["alt+shift+f"], "command": "mark_language_problem_solved", "args": { "applyFix": true } },
{ "keys": ["alt+d"], "command": "mark_language_problem_solved", "args": { "applyFix": false } }
{ "keys": ["alt+down"], "command": "goto_next_language_problem", "args": { "jump_forward": true } },
{ "keys": ["alt+up"], "command": "goto_next_language_problem", "args": { "jump_forward": false } },
{ "keys": ["alt+shift+f"], "command": "mark_language_problem_solved", "args": { "apply_fix": true } },
{ "keys": ["alt+d"], "command": "mark_language_problem_solved", "args": { "apply_fix": false } }
]
8 changes: 4 additions & 4 deletions Default (OSX).sublime-keymap
@@ -1,7 +1,7 @@
[
{ "keys": ["ctrl+shift+c"], "command": "language_tool" },
{ "keys": ["alt+down"], "command": "goto_next_language_problem", "args": { "jumpForward": true } },
{ "keys": ["alt+up"], "command": "goto_next_language_problem", "args": { "jumpForward": false } },
{ "keys": ["alt+shift+f"], "command": "mark_language_problem_solved", "args": { "applyFix": true } },
{ "keys": ["alt+d"], "command": "mark_language_problem_solved", "args": { "applyFix": false } }
{ "keys": ["alt+down"], "command": "goto_next_language_problem", "args": { "jump_forward": true } },
{ "keys": ["alt+up"], "command": "goto_next_language_problem", "args": { "jump_forward": false } },
{ "keys": ["alt+shift+f"], "command": "mark_language_problem_solved", "args": { "apply_fix": true } },
{ "keys": ["alt+d"], "command": "mark_language_problem_solved", "args": { "apply_fix": false } }
]
8 changes: 4 additions & 4 deletions Default (Windows).sublime-keymap
@@ -1,7 +1,7 @@
[
{ "keys": ["ctrl+shift+c"], "command": "language_tool" },
{ "keys": ["alt+down"], "command": "goto_next_language_problem", "args": { "jumpForward": true } },
{ "keys": ["alt+up"], "command": "goto_next_language_problem", "args": { "jumpForward": false } },
{ "keys": ["alt+shift+f"], "command": "mark_language_problem_solved", "args": { "applyFix": true } },
{ "keys": ["alt+d"], "command": "mark_language_problem_solved", "args": { "applyFix": false } }
{ "keys": ["alt+down"], "command": "goto_next_language_problem", "args": { "jump_forward": true } },
{ "keys": ["alt+up"], "command": "goto_next_language_problem", "args": { "jump_forward": false } },
{ "keys": ["alt+shift+f"], "command": "mark_language_problem_solved", "args": { "apply_fix": true } },
{ "keys": ["alt+d"], "command": "mark_language_problem_solved", "args": { "apply_fix": false } }
]
8 changes: 4 additions & 4 deletions LanguageTool.sublime-commands
Expand Up @@ -16,22 +16,22 @@
{
"caption": "LanguageTool: Next Problem",
"command": "goto_next_language_problem",
"args": {"jumpForward": true}
"args": {"jump_forward": true}
},
{
"caption": "LanguageTool: Previous Problem",
"command": "goto_next_language_problem",
"args": {"jumpForward": false}
"args": {"jump_forward": false}
},
{
"caption": "LanguageTool: Apply Suggested Correction(s)",
"command": "mark_language_problem_solved",
"args": {"applyFix": true}
"args": {"apply_fix": true}
},
{
"caption": "LanguageTool: Ignore Problem",
"command": "mark_language_problem_solved",
"args": {"applyFix": false}
"args": {"apply_fix": false}
},
{
"caption": "LanguageTool: Clear Problems",
Expand Down

0 comments on commit 0b17db1

Please sign in to comment.