Skip to content

Commit

Permalink
fixed shift+esc can be mapped to ctrl+j #40 (#45)
Browse files Browse the repository at this point in the history
* fixed shift+esc can be mapped to ctrl+j #40

* fixed shift+esc can be mapped to ctrl+j #40
  • Loading branch information
Keisuke KATO authored Dec 1, 2016
1 parent 8e1a949 commit 2a5c533
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.2.5 (December 1, 2016)

* enhancement - shift+esc can be mapped to ctrl+j. See [#40](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/40).

## 0.2.4 (November 30, 2016)

* enhancement - Ctrl+Shift+Numpad (- and +) should perform "Fold all" & "Expand all". See [#38](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/38).
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Port of IntelliJ IDEA key bindings for VS Code.

## Usage


### Editing

Linux, Windows | macOS | Feature | Supported
Expand Down Expand Up @@ -123,7 +124,9 @@ 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
escape | escape | Go to editor (from tool window) | N/A
shift+escape | shift+escape | Hide active or last active window | ✅
shift+escape | shift+escape | Hide active or last active window (Sidebar) | ✅
shift+escape | shift+escape | Hide active or last active window (Terminal) | ✅
shift+escape | shift+escape | Hide active or last active window (Panel) | N/A
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
22 changes: 19 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-idea-keybindings",
"version": "0.2.4",
"version": "0.2.5",
"publisher": "k--kato",
"engines": {
"vscode": "1.7.x"
Expand Down Expand Up @@ -711,8 +711,14 @@
"key": "shift+escape",
"mac": "shift+escape",
"command": "workbench.action.toggleSidebarVisibility",
"when": "!editorFocus",
"intellij": "Hide active or last active window"
"when": "!editorFocus && !terminalFocus",
"intellij": "Hide active or last active window (Sidebar)"
}, {
"key": "shift+escape",
"mac": "shift+escape",
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminalFocus",
"intellij": "Hide active or last active window (Terminal)"
},


Expand All @@ -723,6 +729,16 @@













{
"key": "ctrl+g",
"mac": "cmd+l",
Expand Down
23 changes: 20 additions & 3 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-idea-keybindings",
"version": "0.2.4",
"version": "0.2.5",
"publisher": "k--kato",
"engines": {
"vscode": "1.7.x"
Expand Down Expand Up @@ -752,9 +752,26 @@
"key": "shift+escape",
"mac": "shift+escape",
"command": "workbench.action.toggleSidebarVisibility",
"when": "!editorFocus",
"intellij": "Hide active or last active window"
"when": "!editorFocus && !terminalFocus",
"intellij": "Hide active or last active window (Sidebar)"
},
{
"key": "shift+escape",
"mac": "shift+escape",
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminalFocus",
"intellij": "Hide active or last active window (Terminal)"
},
/*
{
"key": "shift+escape",
"mac": "shift+escape",
"command": "",
"when": "panelVisible",
"intellij": "Hide active or last active window (Panel)",
"todo": "not support panelVisible VS Code #14779"
},
*/
/*
{
"key": "ctrl+shift+f4",
Expand Down

0 comments on commit 2a5c533

Please sign in to comment.