Skip to content

Commit

Permalink
fixed ctrl+q should be bound to show hover #46 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keisuke KATO authored Dec 6, 2016
1 parent 2a5c533 commit ccf2ce6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 19 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.2.6 (December 6, 2016)

* enhancement - ctrl+q should be bound to show hover. See [#46](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/46).

## 0.2.5 (December 1, 2016)

* enhancement - shift+esc can be mapped to ctrl+j. See [#40](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/40).
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ctrl+space | ctrl+space | Basic code completion (the name of any class, method o
ctrl+shft+space | ctrl+shft+space | Smart code completion (filters the list of methods and variables by expected type) | N/A
ctrl+shift+enter | cmd+shift+enter | Complete statement | ✅
ctrl+p | cmd+p | Parameter info (within method call arguments) | ✅
ctrl+q | ctrl+j | Quick documentation lookup | N/A
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 | ✅
Expand Down Expand Up @@ -281,6 +281,7 @@ when changes are saved.
* [@whinc](https://github.com/whinc)
* [@HSAR](https://github.com/HSAR)
* [@mastersimon](https://github.com/mastersimon)
* [@thekalinga](https://github.com/thekalinga)


## License
Expand Down
18 changes: 7 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-idea-keybindings",
"version": "0.2.5",
"version": "0.2.6",
"publisher": "k--kato",
"engines": {
"vscode": "1.7.x"
Expand Down Expand Up @@ -77,6 +77,12 @@
"command": "editor.action.triggerParameterHints",
"when": "editorHasSignatureHelpProvider && editorTextFocus",
"intellij": "Parameter info (within method call arguments)"
}, {
"key": "ctrl+q",
"mac": "ctrl+j",
"command": "editor.action.showHover",
"when": "editorTextFocus",
"intellij": "Quick documentation lookup"
},


Expand All @@ -87,16 +93,6 @@
















Expand Down
11 changes: 4 additions & 7 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-idea-keybindings",
"version": "0.2.5",
"version": "0.2.6",
"publisher": "k--kato",
"engines": {
"vscode": "1.7.x"
Expand Down Expand Up @@ -79,16 +79,13 @@
"when": "editorHasSignatureHelpProvider && editorTextFocus",
"intellij": "Parameter info (within method call arguments)"
},
/*
{
"key": "ctrl+q",
"mac": "ctrl+j",
"command": "",
"when": "",
"intellij": "Quick documentation lookup",
"todo": "N/A: ctrl+j / Mid.button click"
"command": "editor.action.showHover",
"when": "editorTextFocus",
"intellij": "Quick documentation lookup"
},
*/
/*
{
"key": "ctrl+f1",
Expand Down

0 comments on commit ccf2ce6

Please sign in to comment.