Skip to content

Commit

Permalink
Releasing v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kasecato committed Jan 30, 2021
1 parent 0005f3d commit 7f7e621
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 1.3.0 (Jan 30, 2021)

* bug fix - [bug report] revertselectedRanges should work outside of diffEditor. See [#205](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/205)
* enhancement - Keymap for completion. See [#183](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/189)

## 1.2.2 (Jan 30, 2021)

* bug fix - Unable to import keybindings. See [#203](https://github.com/kasecato/vscode-intellij-idea-keybindings/issues/203)
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ Linux, Windows | macOS | Feature | Supported
---------------|------|---------|----------
ctrl+space | ctrl+space | Basic code completion (the name of any class, method or variable) | ✅
ctrl+shift+space | ctrl+shift+space | Smart code completion (filters the list of methods and variables by expected type) | N/A
enter | enter | Choose Lookup Item | ✅
tab | tab | Choose Lookup Item Replace | ✅
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 | ✅
Expand Down Expand Up @@ -222,7 +224,7 @@ ctrl+alt+p | cmd+alt+p | Extract Parameter | N/A
Linux, Windows | macOS | Feature | Supported
---------------|------|---------|----------
ctrl+alt+k | cmd+k | Commit project to VCS | ✅
ctrl+shift+k | cmd+shift+k | Push commits to VCS | ✅
ctrl+shift+k | cmd+alt+k | Push commits to VCS | ✅
ctrl+t | cmd+t | Update project from VCS | ✅
ctrl+alt+z | cmd+alt+z | Rollback Lines | ✅
alt+shift+c | alt+shift+c | View recent changes | N/A
Expand Down Expand Up @@ -257,7 +259,7 @@ alt+numpad9 | cmd+numpad9 | Open corresponding tool window (Git) | ✅
alt+9 | cmd+9 | Close corresponding tool window (Git) | ✅
alt+numpad9 | cmd+numpad9 | Close corresponding tool window (Git) | ✅
ctrl+s | cmd+s | Save all | ✅
ctrl+alt+y | cmd+alt+y | Synchronize |
ctrl+alt+y | cmd+alt+y | Synchronize | N/A
ctrl+alt+f | ctrl+cmd+f | Toggle full screen mode | ✅
ctrl+shift+f12 | cmd+shift+f12 | Toggle maximizing editor | ✅
alt+shift+f | alt+shift+f | Add to Favorites | N/A
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-idea-keybindings",
"version": "1.2.2",
"version": "1.3.0",
"publisher": "k--kato",
"engines": {
"vscode": "^1.52.0"
Expand Down Expand Up @@ -66,12 +66,14 @@
}],
"keybindings": [{
"key": "enter",
"mac": "enter",
"command": "acceptSelectedSuggestion",
"when": "acceptSuggestionOnEnter && suggestWidgetVisible && suggestionMakesTextEdit && textInputFocus",
"intellij": "Choose Lookup Item"
},
{
"key": "tab",
"mac": "tab",
"command": "acceptAlternativeSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus",
"intellij": "Choose Lookup Item Replace"
Expand Down
4 changes: 3 additions & 1 deletion src/package-with-comment.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-idea-keybindings",
"version": "1.2.2",
"version": "1.3.0",
"publisher": "k--kato",
"engines": {
"vscode": "^1.52.0"
Expand Down Expand Up @@ -91,12 +91,14 @@
*/
{
"key": "enter",
"mac": "enter",
"command": "acceptSelectedSuggestion",
"when": "acceptSuggestionOnEnter && suggestWidgetVisible && suggestionMakesTextEdit && textInputFocus",
"intellij": "Choose Lookup Item"
},
{
"key": "tab",
"mac": "tab",
"command": "acceptAlternativeSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus",
"intellij": "Choose Lookup Item Replace"
Expand Down

0 comments on commit 7f7e621

Please sign in to comment.