Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed shift+esc can be mapped to ctrl+j #40 #42

Merged
merged 1 commit into from
Nov 30, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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