File tree Expand file tree Collapse file tree 3 files changed +24
-10
lines changed Expand file tree Collapse file tree 3 files changed +24
-10
lines changed Original file line number Diff line number Diff line change @@ -210,12 +210,13 @@ Linux, Windows | macOS | Feature | Supported
210
210
---------------|------|---------|----------
211
211
f7 | f7 | Next difference | Yes
212
212
shift+f7 | shift+f7 | Previous difference | Yes
213
- ctrl+shift+enter | cmd+shift+enter | Start new line | Yes
213
+ alt+ctrl+enter | alt+cmd+enter | Start new line before current | Yes
214
+ shift+ctrl+enter | shift+cmd+enter | Start new line | Yes
214
215
215
216
216
217
## Installation
217
218
218
- 1 . Install Visual Studio Code 1.4 .0 or higher
219
+ 1 . Install Visual Studio Code 1.6 .0 or higher
219
220
1 . Launch Code
220
221
1 . From the command palette ` Ctrl ` -` Shift ` -` P ` (Windows, Linux) or ` Cmd ` -` Shift ` -` P ` (macOS)
221
222
1 . Select ` Install Extension `
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " intellij-idea-keybindings" ,
3
- "version" : " 0.1.7 " ,
3
+ "version" : " 0.1.8 " ,
4
4
"publisher" : " k--kato" ,
5
5
"engines" : {
6
6
"vscode" : " 1.6.x"
1230
1230
"when" : " textCompareEditorVisible" ,
1231
1231
"intellij" : " Previous difference"
1232
1232
}, {
1233
- "key" : " ctrl+shift+enter" ,
1234
- "mac" : " cmd+shift+enter" ,
1233
+ "key" : " alt+ctrl+enter" ,
1234
+ "mac" : " alt+cmd+enter" ,
1235
+ "command" : " editor.action.insertLineBefore" ,
1236
+ "when" : " editorTextFocus && !editorReadonly" ,
1237
+ "intellij" : " Start new line before current"
1238
+ }, {
1239
+ "key" : " shift+ctrl+enter" ,
1240
+ "mac" : " shift+cmd+enter" ,
1235
1241
"command" : " editor.action.insertLineAfter" ,
1236
- "when" : " editorTextFocus && !suggestWidgetVisible" ,
1242
+ "when" : " editorTextFocus && !editorReadonly && ! suggestWidgetVisible" ,
1237
1243
"intellij" : " Start new line"
1238
1244
}
1239
1245
]
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " intellij-idea-keybindings" ,
3
- "version" : " 0.1.7 " ,
3
+ "version" : " 0.1.8 " ,
4
4
"publisher" : " k--kato" ,
5
5
"engines" : {
6
6
"vscode" : " 1.6.x"
1285
1285
"intellij" : " Previous difference"
1286
1286
},
1287
1287
{
1288
- "key" : " ctrl+shift+enter" ,
1289
- "mac" : " cmd+shift+enter" ,
1288
+ "key" : " alt+ctrl+enter" ,
1289
+ "mac" : " alt+cmd+enter" ,
1290
+ "command" : " editor.action.insertLineBefore" ,
1291
+ "when" : " editorTextFocus && !editorReadonly" ,
1292
+ "intellij" : " Start new line before current"
1293
+ },
1294
+ {
1295
+ "key" : " shift+ctrl+enter" ,
1296
+ "mac" : " shift+cmd+enter" ,
1290
1297
"command" : " editor.action.insertLineAfter" ,
1291
- "when" : " editorTextFocus && !suggestWidgetVisible" ,
1298
+ "when" : " editorTextFocus && !editorReadonly && ! suggestWidgetVisible" ,
1292
1299
"intellij" : " Start new line"
1293
1300
}
1294
1301
]
You can’t perform that action at this time.
0 commit comments