File tree Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Expand file tree Collapse file tree 4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
33## 0.2.1 (November 17, 2016)
4+ * enhancement - Add new key commands. See [ #26 ] ( https://github.com/k--kato/vscode-intellij-idea-keybindings/pull/26 ) .
45* enhancement - add CHANGELOG.md.
56* bug fix - Issue with Updating Extension and Versions. See [ #27 ] ( https://github.com/k--kato/vscode-intellij-idea-keybindings/issues/27 ) .
67
Original file line number Diff line number Diff line change @@ -146,13 +146,13 @@ f2 | f2 | Next highlighted error | N/A
146146shift+f2 | shift+f2 | Previous highlighted error | N/A
147147f4 | f4 | Edit source | ✅
148148ctrl+enter | cmd+down | View source | ✅
149+ shift+ctrl+down | shift+cmd+down | Move Statement Down | ✅
150+ shift+ctrl+up | shift+cmd+up | Move Statement Up | ✅
149151alt+home | alt+home | Show navigation bar | N/A
150152f11 | f3 | Toggle bookmark | N/A
151153ctrl+f11 | alt+f3 | Toggle bookmark with mnemonic | N/A
152154ctrl+0 | ctrl+0 | Go to numbered bookmark | N/A
153155shift+f11 | cmd+f3 | Show bookmarks | N/A
154- ctrl+shift+up | cmd+shift+up | Move Statement Up | ✅
155- ctrl+shift+down | cmd+shift+down | Move Statement Down | ✅
156156
157157### Refactoring
158158
@@ -264,6 +264,7 @@ when changes are saved.
264264* [ @brianegan ] ( https://github.com/brianegan )
265265* [ @whinc ] ( https://github.com/whinc )
266266* [ @HSAR ] ( https://github.com/HSAR )
267+ * [ @mastersimon ] ( https://github.com/mastersimon )
267268
268269
269270## License
Original file line number Diff line number Diff line change 910910 "command" : " editor.action.goToDeclaration" ,
911911 "when" : " editorHasDefinitionProvider && editorTextFocus" ,
912912 "intellij" : " View source"
913+ }, {
914+ "key" : " shift+ctrl+down" ,
915+ "mac" : " shift+cmd+down" ,
916+ "command" : " editor.action.moveLinesDownAction" ,
917+ "when" : " editorTextFocus && !editorReadonly" ,
918+ "intellij" : " Move Statement Down"
919+ }, {
920+ "key" : " shift+ctrl+up" ,
921+ "mac" : " shift+cmd+up" ,
922+ "command" : " editor.action.moveLinesUpAction" ,
923+ "when" : " editorTextFocus && !editorReadonly" ,
924+ "intellij" : " Move Statement Up"
913925 },
914926
915927
Original file line number Diff line number Diff line change 956956 "key" : " shift+ctrl+down" ,
957957 "mac" : " shift+cmd+down" ,
958958 "command" : " editor.action.moveLinesDownAction" ,
959- "when" : " editorTextFocus" ,
959+ "when" : " editorTextFocus && !editorReadonly " ,
960960 "intellij" : " Move Statement Down"
961961 },
962962 {
963963 "key" : " shift+ctrl+up" ,
964964 "mac" : " shift+cmd+up" ,
965965 "command" : " editor.action.moveLinesUpAction" ,
966- "when" : " editorTextFocus" ,
966+ "when" : " editorTextFocus && !editorReadonly " ,
967967 "intellij" : " Move Statement Up"
968968 },
969969/*
You can’t perform that action at this time.
0 commit comments