Skip to content

Commit

Permalink
Fixed shift+esc can be mapped to ctrl+j #40
Browse files Browse the repository at this point in the history
  • Loading branch information
k--kato committed Nov 30, 2016
1 parent feb90ca commit 4f9f7eb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 22 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ ctrl+alt+shift+n | cmd+alt+o | Go to symbol | ✅
alt+left | ctrl+left | Go to previous editor tab | ✅
alt+right | ctrl+right | Go to next editor tab | ✅
f12 | f12 | Go back to previous tool window | N/A
esc | esc | Go to editor (from tool window) | N/A
shift+esc | shift+esc | Hide active or last active window | N/A
escape | escape | Go to editor (from tool window) | N/A
shift+escape | shift+escape | Hide active or last active window |
ctrl+shift+f4 | cmd+shift+f4 | Close active run/messages/find/... tab | N/A
ctrl+g | cmd+l | Go to line | ✅
ctrl+e | cmd+e | Recent files popup | ✅
Expand Down
19 changes: 8 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -707,15 +707,13 @@












{
"key": "shift+escape",
"mac": "shift+escape",
"command": "workbench.action.toggleSidebarVisibility",
"when": "!editorFocus",
"intellij": "Hide active or last active window"
},



Expand Down Expand Up @@ -1351,8 +1349,7 @@
"key": "alt+f12",
"mac": "alt+f12",
"command": "workbench.action.terminal.toggleTerminal",
"when": "editorFocus",
"intellij": "Open corresponding tool window (Explorer)"
"intellij": "Open corresponding tool window (Terminal)"
}
]
}
Expand Down
16 changes: 7 additions & 9 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -741,22 +741,20 @@
*/
/*
{
"key": "esc",
"mac": "esc",
"key": "escape",
"mac": "escape",
"command": "",
"intellij": "Go to editor (from tool window)",
"todo": "N/A"
},
*/
/*
{
"key": "shift+esc",
"mac": "shift+esc",
"command": "",
"intellij": "Hide active or last active window",
"todo": "N/A"
"key": "shift+escape",
"mac": "shift+escape",
"command": "workbench.action.toggleSidebarVisibility",
"when": "!editorFocus",
"intellij": "Hide active or last active window"
},
*/
/*
{
"key": "ctrl+shift+f4",
Expand Down

0 comments on commit 4f9f7eb

Please sign in to comment.