Skip to content

Commit

Permalink
fixed #34 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
Keisuke KATO authored Nov 24, 2016
1 parent 26bd6a8 commit c86f553
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 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.2 (November 24, 2016)

* bug fix - My Ctrl + Delete and Ctrl + Backspace shortcuts are inverted. See [#34](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/34).

## 0.2.1 (November 17, 2016)
* enhancement - Add 'Delete Line' command. See [#31](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/31).
* enhancement - Add VS Code Marketplace batch.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-idea-keybindings",
"version": "0.2.1",
"version": "0.2.2",
"publisher": "k--kato",
"engines": {
"vscode": "1.7.x"
Expand Down Expand Up @@ -357,13 +357,13 @@
{
"key": "ctrl+delete",
"mac": "alt+delete",
"command": "deleteWordLeft",
"command": "deleteWordRight",
"when": "editorTextFocus && !editorReadonly",
"intellij": "Delete to word end"
}, {
"key": "ctrl+backspace",
"mac": "alt+backspace",
"command": "deleteWordRight",
"command": "deleteWordLeft",
"when": "editorTextFocus && !editorReadonly",
"intellij": "Delete to word start"
}, {
Expand Down
6 changes: 3 additions & 3 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.1",
"version": "0.2.2",
"publisher": "k--kato",
"engines": {
"vscode": "1.7.x"
Expand Down Expand Up @@ -369,14 +369,14 @@
{
"key": "ctrl+delete",
"mac": "alt+delete",
"command": "deleteWordLeft",
"command": "deleteWordRight",
"when": "editorTextFocus && !editorReadonly",
"intellij": "Delete to word end"
},
{
"key": "ctrl+backspace",
"mac": "alt+backspace",
"command": "deleteWordRight",
"command": "deleteWordLeft",
"when": "editorTextFocus && !editorReadonly",
"intellij": "Delete to word start"
},
Expand Down

0 comments on commit c86f553

Please sign in to comment.