Skip to content

Commit

Permalink
Change keybindings to avoid overriding defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
gtarawneh committed Apr 13, 2016
1 parent 93dea58 commit 69ad66a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{ "keys": ["ctrl+shift+r"], "command": "language_tool" },
{ "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+right"], "command": "mark_language_problem_solved", "args": {"applyFix": true} },
{ "keys": ["alt+left"], "command": "mark_language_problem_solved", "args": {"applyFix": false} }
{ "keys": ["alt+f"], "command": "mark_language_problem_solved", "args": {"applyFix": true} },
{ "keys": ["alt+d"], "command": "mark_language_problem_solved", "args": {"applyFix": false} }
]
6 changes: 3 additions & 3 deletions Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{ "keys": ["ctrl+shift+r"], "command": "language_tool" },
{ "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+right"], "command": "mark_language_problem_solved", "args": {"applyFix": true} },
{ "keys": ["alt+left"], "command": "mark_language_problem_solved", "args": {"applyFix": false} }
{ "keys": ["alt+f"], "command": "mark_language_problem_solved", "args": {"applyFix": true} },
{ "keys": ["alt+d"], "command": "mark_language_problem_solved", "args": {"applyFix": false} }
]
6 changes: 3 additions & 3 deletions Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{ "keys": ["ctrl+shift+r"], "command": "language_tool" },
{ "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+right"], "command": "mark_language_problem_solved", "args": {"applyFix": true} },
{ "keys": ["alt+left"], "command": "mark_language_problem_solved", "args": {"applyFix": false} }
{ "keys": ["alt+f"], "command": "mark_language_problem_solved", "args": {"applyFix": true} },
{ "keys": ["alt+d"], "command": "mark_language_problem_solved", "args": {"applyFix": false} }
]

0 comments on commit 69ad66a

Please sign in to comment.