Skip to content

Commit ccf2ce6

Browse files
author
Keisuke KATO
authored
fixed ctrl+q should be bound to show hover #46 (#48)
1 parent 2a5c533 commit ccf2ce6

File tree

4 files changed

+17
-19
lines changed

4 files changed

+17
-19
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 0.2.6 (December 6, 2016)
4+
5+
* enhancement - ctrl+q should be bound to show hover. See [#46](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/46).
6+
37
## 0.2.5 (December 1, 2016)
48

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

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ctrl+space | ctrl+space | Basic code completion (the name of any class, method o
1515
ctrl+shft+space | ctrl+shft+space | Smart code completion (filters the list of methods and variables by expected type) | N/A
1616
ctrl+shift+enter | cmd+shift+enter | Complete statement | ✅
1717
ctrl+p | cmd+p | Parameter info (within method call arguments) | ✅
18-
ctrl+q | ctrl+j | Quick documentation lookup | N/A
18+
ctrl+q | ctrl+j | Quick documentation lookup |
1919
ctrl+f1 | shift+f1 | External Doc | N/A
2020
ctrl+mouseover | cmd+mouseover | Brief Info | N/A
2121
ctrl+f1 | cmd+f1 | Show descriptions of error or warning at caret | ✅
@@ -281,6 +281,7 @@ when changes are saved.
281281
* [@whinc](https://github.com/whinc)
282282
* [@HSAR](https://github.com/HSAR)
283283
* [@mastersimon](https://github.com/mastersimon)
284+
* [@thekalinga](https://github.com/thekalinga)
284285

285286

286287
## License

package.json

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "intellij-idea-keybindings",
3-
"version": "0.2.5",
3+
"version": "0.2.6",
44
"publisher": "k--kato",
55
"engines": {
66
"vscode": "1.7.x"
@@ -77,6 +77,12 @@
7777
"command": "editor.action.triggerParameterHints",
7878
"when": "editorHasSignatureHelpProvider && editorTextFocus",
7979
"intellij": "Parameter info (within method call arguments)"
80+
}, {
81+
"key": "ctrl+q",
82+
"mac": "ctrl+j",
83+
"command": "editor.action.showHover",
84+
"when": "editorTextFocus",
85+
"intellij": "Quick documentation lookup"
8086
},
8187

8288

@@ -87,16 +93,6 @@
8793

8894

8995

90-
91-
92-
93-
94-
95-
96-
97-
98-
99-
10096

10197

10298

src/package-with-comment.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "intellij-idea-keybindings",
3-
"version": "0.2.5",
3+
"version": "0.2.6",
44
"publisher": "k--kato",
55
"engines": {
66
"vscode": "1.7.x"
@@ -79,16 +79,13 @@
7979
"when": "editorHasSignatureHelpProvider && editorTextFocus",
8080
"intellij": "Parameter info (within method call arguments)"
8181
},
82-
/*
8382
{
8483
"key": "ctrl+q",
8584
"mac": "ctrl+j",
86-
"command": "",
87-
"when": "",
88-
"intellij": "Quick documentation lookup",
89-
"todo": "N/A: ctrl+j / Mid.button click"
85+
"command": "editor.action.showHover",
86+
"when": "editorTextFocus",
87+
"intellij": "Quick documentation lookup"
9088
},
91-
*/
9289
/*
9390
{
9491
"key": "ctrl+f1",

0 commit comments

Comments
 (0)