Skip to content

Commit

Permalink
fixed #10 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keisuke KATO authored Aug 5, 2016
1 parent be4629e commit f8bcc70
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 22 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ ctrl+shift+backspace | cmd+shift+backspace | Navigate to last edit location | N/
alt+f1 | alt+f1 | Select current file or symbol in any view | N/A
ctrl+b | cmd+b | Go to declaration | Yes
ctrl+alt+b | cmd+alt+b | Go to implementation(s) | N/A
ctrl+shift+i | alt+space | Open quick definition lookup | N/A
ctrl+shift+i | alt+space | Open quick definition lookup | Yes
ctrl+shift+b | ctrl+shift+b | Go to type declaration | Yes
ctrl+u | cmd+u | Go to super-method/super-class | N/A
alt+up | ctrl+up | Go to previous method | N/A
Expand Down Expand Up @@ -213,7 +213,7 @@ shift+f7 | shift+f7 | Previous difference | Yes

## Installation

1. Install Visual Studio Code 0.10.11 or higher
1. Install Visual Studio Code 1.4.0 or higher
1. Launch Code
1. From the command palette `Ctrl`-`Shift`-`P` (Windows, Linux) or `Cmd`-`Shift`-`P` (macOS)
1. Select `Install Extension`
Expand Down Expand Up @@ -253,6 +253,12 @@ After the initial compile, the source files will be watched and recompiled
when changes are saved.


## Contributors

* [@brianegan](https://github.com/brianegan)
* [@whinc](https://github.com/whinc)


## License

This extension is [licensed under the MIT License](LICENSE.md).
Expand Down
20 changes: 8 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "intellij-idea-keybindings",
"version": "0.1.4",
"version": "0.1.5",
"publisher": "k--kato",
"engines": {
"vscode": "1.3.x"
"vscode": "1.4.x"
},
"displayName": "IntelliJ IDEA Keybindings",
"description": "Port of IntelliJ IDEA Keybindings",
Expand Down Expand Up @@ -761,17 +761,13 @@













{
"key": "ctrl+shift+i",
"mac": "alt+space",
"command": "editor.action.previewDeclaration",
"when": "editorTextFocus",
"intellij": "Open quick definition lookup"
}, {
"key": "ctrl+shift+b",
"mac": "ctrl+shift+b",
"command": "editor.action.goToTypeDeclaration",
Expand Down
11 changes: 4 additions & 7 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "intellij-idea-keybindings",
"version": "0.1.4",
"version": "0.1.5",
"publisher": "k--kato",
"engines": {
"vscode": "1.3.x"
"vscode": "1.4.x"
},
"displayName": "IntelliJ IDEA Keybindings",
"description": "Port of IntelliJ IDEA Keybindings",
Expand Down Expand Up @@ -800,16 +800,13 @@
"todo": "N/A"
},
*/
/*
{
"key": "ctrl+shift+i",
"mac": "alt+space",
"command": "",
"command": "editor.action.previewDeclaration",
"when": "editorTextFocus",
"intellij": "Open quick definition lookup",
"todo": "N/A"
"intellij": "Open quick definition lookup"
},
*/
{
"key": "ctrl+shift+b",
"mac": "ctrl+shift+b",
Expand Down
2 changes: 1 addition & 1 deletion src/tool/gene-keybind-markdown.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*---------------------------------------------------------------------------*\
* node gene-keybind-markdown.js
* node src/tool/gene-keybind-markdown.js
\*---------------------------------------------------------------------------*/

const fs = require('fs'),
Expand Down

0 comments on commit f8bcc70

Please sign in to comment.