Skip to content

Commit

Permalink
Fix shortcuts conflict with SublimeAStyleFormatter
Browse files Browse the repository at this point in the history
  • Loading branch information
timonwong committed Sep 28, 2012
1 parent d54b4dd commit b82c9a8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[
{ "keys": ["ctrl+alt+f"], "command": "js_format"}
{
"keys": ["ctrl+alt+f"], "command": "js_format",
"context": [{"key": "selector", "operator": "equal", "operand": "source.js,source.json"}]
}
]
5 changes: 4 additions & 1 deletion Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[
{ "keys": ["ctrl+alt+f"], "command": "js_format"}
{
"keys": ["ctrl+alt+f"], "command": "js_format",
"context": [{"key": "selector", "operator": "equal", "operand": "source.js,source.json"}]
}
]
5 changes: 4 additions & 1 deletion Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[
{ "keys": ["ctrl+alt+f"], "command": "js_format"}
{
"keys": ["ctrl+alt+f"], "command": "js_format",
"context": [{"key": "selector", "operator": "equal", "operand": "source.js,source.json"}]
}
]

0 comments on commit b82c9a8

Please sign in to comment.