Skip to content

Commit

Permalink
Merge pull request #228 from Eskibear/move
Browse files Browse the repository at this point in the history
add keymap for Move
  • Loading branch information
kasecato authored Jun 10, 2021
2 parents 709fc40 + a930e9e commit 4848936
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ ctrl+end | cmd+end | Move Caret to Text End | ✅
Linux, Windows | macOS | Feature | Supported
---------------|------|---------|----------
f5 | f5 | Copy | N/A
f6 | f6 | Move | N/A
f6 | f6 | Move |
alt+delete | cmd+delete | Safe Delete | N/A
shift+f6 | shift+f6 | Rename | ✅
shift+f6 | shift+f6 | Select All Occurrences | ✅
Expand Down
10 changes: 10 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -806,6 +806,16 @@
"when": "textInputFocus",
"intellij": "Move Caret to Text End"
},
{
"key": "f6",
"mac": "f6",
"command": "editor.action.codeAction",
"when": "editorTextFocus",
"args": {
"kind": "refactor.move"
},
"intellij": "Move"
},
{
"key": "shift+f6",
"mac": "shift+f6",
Expand Down
10 changes: 5 additions & 5 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -1249,16 +1249,16 @@
"todo": "N/A"
},
*/
/*
{
"key": "f6",
"mac": "f6",
"command": "",
"command": "editor.action.codeAction",
"when": "editorTextFocus",
"intellij": "Move",
"todo": "N/A"
"args": {
"kind": "refactor.move"
},
"intellij": "Move"
},
*/
/*
{
"key": "alt+delete",
Expand Down

0 comments on commit 4848936

Please sign in to comment.