Skip to content

Commit f8bcc70

Browse files
author
Keisuke KATO
authored
fixed #10 (#12)
1 parent be4629e commit f8bcc70

File tree

4 files changed

+21
-22
lines changed

4 files changed

+21
-22
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ ctrl+shift+backspace | cmd+shift+backspace | Navigate to last edit location | N/
129129
alt+f1 | alt+f1 | Select current file or symbol in any view | N/A
130130
ctrl+b | cmd+b | Go to declaration | Yes
131131
ctrl+alt+b | cmd+alt+b | Go to implementation(s) | N/A
132-
ctrl+shift+i | alt+space | Open quick definition lookup | N/A
132+
ctrl+shift+i | alt+space | Open quick definition lookup | Yes
133133
ctrl+shift+b | ctrl+shift+b | Go to type declaration | Yes
134134
ctrl+u | cmd+u | Go to super-method/super-class | N/A
135135
alt+up | ctrl+up | Go to previous method | N/A
@@ -213,7 +213,7 @@ shift+f7 | shift+f7 | Previous difference | Yes
213213

214214
## Installation
215215

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

255255

256+
## Contributors
257+
258+
* [@brianegan](https://github.com/brianegan)
259+
* [@whinc](https://github.com/whinc)
260+
261+
256262
## License
257263

258264
This extension is [licensed under the MIT License](LICENSE.md).

package.json

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "intellij-idea-keybindings",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"publisher": "k--kato",
55
"engines": {
6-
"vscode": "1.3.x"
6+
"vscode": "1.4.x"
77
},
88
"displayName": "IntelliJ IDEA Keybindings",
99
"description": "Port of IntelliJ IDEA Keybindings",
@@ -761,17 +761,13 @@
761761

762762

763763

764-
765-
766-
767-
768-
769-
770-
771-
772-
773-
774764
{
765+
"key": "ctrl+shift+i",
766+
"mac": "alt+space",
767+
"command": "editor.action.previewDeclaration",
768+
"when": "editorTextFocus",
769+
"intellij": "Open quick definition lookup"
770+
}, {
775771
"key": "ctrl+shift+b",
776772
"mac": "ctrl+shift+b",
777773
"command": "editor.action.goToTypeDeclaration",

src/package-with-comment.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "intellij-idea-keybindings",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"publisher": "k--kato",
55
"engines": {
6-
"vscode": "1.3.x"
6+
"vscode": "1.4.x"
77
},
88
"displayName": "IntelliJ IDEA Keybindings",
99
"description": "Port of IntelliJ IDEA Keybindings",
@@ -800,16 +800,13 @@
800800
"todo": "N/A"
801801
},
802802
*/
803-
/*
804803
{
805804
"key": "ctrl+shift+i",
806805
"mac": "alt+space",
807-
"command": "",
806+
"command": "editor.action.previewDeclaration",
808807
"when": "editorTextFocus",
809-
"intellij": "Open quick definition lookup",
810-
"todo": "N/A"
808+
"intellij": "Open quick definition lookup"
811809
},
812-
*/
813810
{
814811
"key": "ctrl+shift+b",
815812
"mac": "ctrl+shift+b",

src/tool/gene-keybind-markdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*---------------------------------------------------------------------------*\
2-
* node gene-keybind-markdown.js
2+
* node src/tool/gene-keybind-markdown.js
33
\*---------------------------------------------------------------------------*/
44

55
const fs = require('fs'),

0 commit comments

Comments
 (0)