Skip to content

Commit

Permalink
Fixed ctrl+f12 should do what ctrl+shift+o does by default #39 (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keisuke KATO authored Nov 30, 2016
1 parent 8d979fe commit 8e1a949
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 16 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## 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).
* enhancement - ctrl+f12 should do what ctrl+shift+o does by default. See [#39](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/39).
* enhancement - shift+esc can be mapped to ctrl+j. See [#40](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/40).

## 0.2.3 (November 29, 2016)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ alt+up | ctrl+up | Go to previous method | N/A
alt+down | ctrl+down | Go to next method | N/A
ctrl+] | cmd+] | Move to code block end | N/A
ctrl+[ | cmd+[ | Move to code block start | N/A
ctrl+f12 | cmd+f12 | File structure popup | N/A
ctrl+f12 | cmd+f12 | File structure popup |
ctrl+h | ctrl+h | Type hierarchy | N/A
ctrl+shift+h | cmd+shift+h | Method hierarchy | N/A
ctrl+alt+h | ctrl+alt+h | Call hierarchy | N/A
Expand Down
17 changes: 7 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -847,16 +847,13 @@













{
"key": "ctrl+f12",
"mac": "cmd+f12",
"command": "workbench.action.gotoSymbol",
"when": "editorTextFocus",
"intellij": "File structure popup"
},



Expand Down
7 changes: 2 additions & 5 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -891,16 +891,13 @@
"todo": "N/A"
},
*/
/*
{
"key": "ctrl+f12",
"mac": "cmd+f12",
"command": "",
"command": "workbench.action.gotoSymbol",
"when": "editorTextFocus",
"intellij": "File structure popup",
"todo": "N/A"
"intellij": "File structure popup"
},
*/
/*
{
"key": "ctrl+h",
Expand Down

0 comments on commit 8e1a949

Please sign in to comment.