Skip to content

Commit 33213ae

Browse files
author
k--kato
committed
Map to new shortcuts for new features in vscode insiders #50
1 parent b13897f commit 33213ae

File tree

4 files changed

+26
-27
lines changed

4 files changed

+26
-27
lines changed

CHANGELOG.md

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

3+
## 0.2.7 (December 14, 2016)
4+
5+
* enhancement - Map to new shortcuts for new features in vscode insiders. See [#50](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/50).
6+
* bug fix - Update package.json with a compatible engine. See [#51](https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/51).
7+
* bug fix - Installing from VS Code Marketplace installs version 0.1.1 instead of latest (0.2.6). See [#53](https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/53).
8+
39
## 0.2.6 (December 6, 2016)
410

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

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ctrl+v | cmd+v | Paste from clipboard | ✅
4343
ctrl+shift+v | cmd+shift+v | Paste from recent buffers... | N/A
4444
ctrl+d | cmd+d | Duplicate current line or selected block | ✅
4545
ctrl+y | cmd+backspace | Delete line at caret | ✅
46-
ctrl+shift+j | ctrl+shift+j | Smart line join | N/A
46+
ctrl+shift+j | ctrl+shift+j | Smart line join |
4747
ctrl+enter | cmd+enter | Smart line split | ✅
4848
shift+enter | shift+enter | Start new line | ✅
4949
ctrl+shift+u | cmd+shift+u | Toggle case for word at caret or selected block | N/A
@@ -240,7 +240,7 @@ ctrl+shift+alt+j | ctrl+cmd+g | Sublime Text style multiple selections | ✅
240240

241241
## Installation
242242

243-
1. Install Visual Studio Code 1.7.0 or higher
243+
1. Install Visual Studio Code 1.8.0 or higher
244244
1. Launch Code
245245
1. From the extension view `Ctrl`-`Shift`-`X` (Windows, Linux) or `Cmd`-`Shift`-`X` (macOS)
246246
1. Search and Choose the extension `Intellij IDEA Keybindings`
@@ -267,7 +267,7 @@ npm install
267267
Now you can compile the code:
268268

269269
1. Launch Code
270-
1. Edit `src/package-with-comment.json`
270+
1. Edit **`src/package-with-comment.json`** (**NOT `package.json`**)
271271
1. Run Build Task `Ctrl`-`Shift`-`B` (Windows, Linux) or `Cmd`-`Shift`-`B` (macOS)
272272
1. Run Command Markdown Generator `node src/tool/gene-keybind-markdown.js`
273273
1. Paste the Command Markdown to `README.md`
@@ -283,6 +283,7 @@ when changes are saved.
283283
* [@HSAR](https://github.com/HSAR)
284284
* [@mastersimon](https://github.com/mastersimon)
285285
* [@thekalinga](https://github.com/thekalinga)
286+
* [@joaomoreno](https://github.com/joaomoreno)
286287

287288

288289
## License

package.json

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "intellij-idea-keybindings",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"publisher": "k--kato",
55
"engines": {
6-
"vscode": "^1.7.0"
6+
"vscode": "^1.8.0"
77
},
88
"displayName": "IntelliJ IDEA Keybindings",
99
"description": "Port of IntelliJ IDEA Keybindings",
@@ -296,18 +296,13 @@
296296
"command": "editor.action.deleteLines",
297297
"when": "editorTextFocus && !editorReadonly",
298298
"intellij": "Delete line at caret"
299-
},
300-
301-
302-
303-
304-
305-
306-
307-
308-
309-
310-
{
299+
}, {
300+
"key": "ctrl+shift+j",
301+
"mac": "ctrl+shift+j",
302+
"command": "editor.action.joinLines",
303+
"when": "editorTextFocus && !editorReadonly",
304+
"intellij": "Smart line join"
305+
}, {
311306
"key": "ctrl+enter",
312307
"mac": "cmd+enter",
313308
"command": "lineBreakInsert",
@@ -1364,8 +1359,8 @@
13641359
"mac": "ctrl+cmd+g",
13651360
"command": "editor.action.selectHighlights",
13661361
"when": "editorFocus",
1367-
"intellij": "Sublime text Style Multiple Selections"
1362+
"intellij": "Sublime Text style multiple selections"
13681363
}
13691364
]
13701365
}
1371-
}
1366+
}

src/package-with-comment.json

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "intellij-idea-keybindings",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"publisher": "k--kato",
55
"engines": {
6-
"vscode": "1.7.x"
6+
"vscode": "^1.8.0"
77
},
88
"displayName": "IntelliJ IDEA Keybindings",
99
"description": "Port of IntelliJ IDEA Keybindings",
@@ -309,16 +309,13 @@
309309
"when": "editorTextFocus && !editorReadonly",
310310
"intellij": "Delete line at caret"
311311
},
312-
/*
313312
{
314313
"key": "ctrl+shift+j",
315314
"mac": "ctrl+shift+j",
316-
"command": "",
317-
"when": "",
318-
"intellij": "Smart line join",
319-
"todo": "N/A"
315+
"command": "editor.action.joinLines",
316+
"when": "editorTextFocus && !editorReadonly",
317+
"intellij": "Smart line join"
320318
},
321-
*/
322319
{
323320
"key": "ctrl+enter",
324321
"mac": "cmd+enter",

0 commit comments

Comments
 (0)