From 6114d99309b7e00141258941f99fb346543b8814 Mon Sep 17 00:00:00 2001 From: cmidkiff87 Date: Mon, 7 Jan 2019 13:57:26 -0500 Subject: [PATCH] Added delete left and right navigation keybindings --- package.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/package.json b/package.json index 9dfd080..cf50ce8 100644 --- a/package.json +++ b/package.json @@ -362,6 +362,22 @@ "command": "cursorWordPartRightSelect", "when": "textInputFocus" }, + { + "mac": "alt+backspace", + "win": "ctrl+backspace", + "linux": "ctrl+backspace", + "key": "ctrl+backspace", + "command": "deleteWordPartLeft", + "when": "textInputFocus" + }, + { + "mac": "alt+delete", + "win": "ctrl+delete", + "linux": "ctrl+delete", + "key": "ctrl+delete", + "command": "deleteWordPartRight", + "when": "textInputFocus" + }, { "mac": "cmd+alt+left", "win": "alt+left",