Skip to content

Commit

Permalink
Add command to delete from cursor until end of line fixes #62
Browse files Browse the repository at this point in the history
  • Loading branch information
auchenberg committed Nov 2, 2017
1 parent 9c8a554 commit ca4f3e7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
"when": "editorTextFocus"
},
{
"mac": "alt+cmd+/",
"mac": "cmd+alt+/",
"win": "ctrl+shift+/",
"linux": "ctrl+shift+/",
"key": "ctrl+shift+/",
Expand Down Expand Up @@ -436,7 +436,7 @@
"key": "ctrl+k ctrl+l",
"command": "editor.action.transformToLowercase",
"when": "editorTextFocus"
},
},
{
"mac": "cmd+k a",
"key": "ctrl+k a",
Expand Down Expand Up @@ -484,7 +484,15 @@
"linux": "ctrl+p",
"key": "ctrl+p",
"command": "workbench.action.quickOpenPreviousEditor"
}
},
{
"mac": "cmd+k cmd+k",
"win": "ctrl+k ctrl+k",
"linux": "ctrl+k ctrl+k",
"command": "deleteAllRight",
"key": "ctrl+k ctrl+k",
"when": "editorTextFocus && !editorReadonly"
}
],
"configuration": {
"type": "object",
Expand Down

0 comments on commit ca4f3e7

Please sign in to comment.