Skip to content

Commit

Permalink
Merge pull request #62 from k--kato/#59/new_file_keybinding
Browse files Browse the repository at this point in the history
new file keybinding #59
  • Loading branch information
Keisuke KATO authored Feb 25, 2017
2 parents 4cf923e + 44c45b5 commit e07b52e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 18 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* enhancement - Added IntelliJ products to package.json. See [#60](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/60).
* enhancement - Added JetBrains products to README. See [#61](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/61).
* enhancement - Update icon from png to svg.
* enhancement - new file keybinding. See [#59](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/59).

## 0.2.8 (January 30, 2017)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ctrl+q | ctrl+j | Quick documentation lookup | ✅
ctrl+f1 | shift+f1 | External Doc | N/A
ctrl+mouseover | cmd+mouseover | Brief Info | N/A
ctrl+f1 | cmd+f1 | Show descriptions of error or warning at caret | ✅
ctrl+insert | cmd+n | Generate code... (Getters, Setters, Constructors, hashCode/equals, toString) | N/A
alt+insert | cmd+n | Generate code... (Getters, Setters, Constructors, hashCode/equals, toString) |
ctrl+o | ctrl+o | Override methods | N/A
ctrl+i | ctrl+i | Implement methods | N/A
ctrl+alt+t | cmd+alt+t | Surround with... (if..else, try..catch, for, synchronized, etc.) | N/A
Expand Down
17 changes: 7 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,16 +113,13 @@
"when": "editorTextFocus",
"intellij": "Show descriptions of error or warning at caret"
},










{
"key": "alt+insert",
"mac": "cmd+n",
"command": "workbench.action.files.newUntitledFile",
"when": "!editorTextFocus",
"intellij": "Generate code... (Getters, Setters, Constructors, hashCode/equals, toString)"
},



Expand Down
11 changes: 4 additions & 7 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,16 +113,13 @@
"when": "editorTextFocus",
"intellij": "Show descriptions of error or warning at caret"
},
/*
{
"key": "ctrl+insert",
"key": "alt+insert",
"mac": "cmd+n",
"command": "",
"when": "",
"intellij": "Generate code... (Getters, Setters, Constructors, hashCode/equals, toString)",
"todo": "N/A: cmd+n / ctrl+enter / ctrl+n"
"command": "workbench.action.files.newUntitledFile",
"when": "!editorTextFocus",
"intellij": "Generate code... (Getters, Setters, Constructors, hashCode/equals, toString)"
},
*/
/*
{
"key": "ctrl+o",
Expand Down

0 comments on commit e07b52e

Please sign in to comment.