Skip to content

Commit c86f553

Browse files
author
Keisuke KATO
authored
fixed #34 (#35)
1 parent 26bd6a8 commit c86f553

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
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.2 (November 24, 2016)
4+
5+
* bug fix - My Ctrl + Delete and Ctrl + Backspace shortcuts are inverted. See [#34](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/34).
6+
37
## 0.2.1 (November 17, 2016)
48
* enhancement - Add 'Delete Line' command. See [#31](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/31).
59
* enhancement - Add VS Code Marketplace batch.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "intellij-idea-keybindings",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"publisher": "k--kato",
55
"engines": {
66
"vscode": "1.7.x"
@@ -357,13 +357,13 @@
357357
{
358358
"key": "ctrl+delete",
359359
"mac": "alt+delete",
360-
"command": "deleteWordLeft",
360+
"command": "deleteWordRight",
361361
"when": "editorTextFocus && !editorReadonly",
362362
"intellij": "Delete to word end"
363363
}, {
364364
"key": "ctrl+backspace",
365365
"mac": "alt+backspace",
366-
"command": "deleteWordRight",
366+
"command": "deleteWordLeft",
367367
"when": "editorTextFocus && !editorReadonly",
368368
"intellij": "Delete to word start"
369369
}, {

src/package-with-comment.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "intellij-idea-keybindings",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"publisher": "k--kato",
55
"engines": {
66
"vscode": "1.7.x"
@@ -369,14 +369,14 @@
369369
{
370370
"key": "ctrl+delete",
371371
"mac": "alt+delete",
372-
"command": "deleteWordLeft",
372+
"command": "deleteWordRight",
373373
"when": "editorTextFocus && !editorReadonly",
374374
"intellij": "Delete to word end"
375375
},
376376
{
377377
"key": "ctrl+backspace",
378378
"mac": "alt+backspace",
379-
"command": "deleteWordRight",
379+
"command": "deleteWordLeft",
380380
"when": "editorTextFocus && !editorReadonly",
381381
"intellij": "Delete to word start"
382382
},

0 commit comments

Comments
 (0)