diff --git a/package.json b/package.json index fe9c47c..0165a27 100644 --- a/package.json +++ b/package.json @@ -427,7 +427,7 @@ "win": "alt+left", "linux": "ctrl+alt+left", "key": "ctrl+alt+left", - "command": "cursorWordStartLeft", + "command": "cursorWordPartLeft", "when": "editorTextFocus" }, { @@ -435,7 +435,7 @@ "win": "alt+right", "linux": "ctrl+alt+right", "key": "ctrl+alt+right", - "command": "cursorWordEndRight", + "command": "cursorWordPartRight", "when": "editorTextFocus" }, { @@ -443,7 +443,7 @@ "win": "alt+shift+left", "linux": "ctrl+alt+shift+left", "key": "ctrl+alt+shift+left", - "command": "cursorWordStartLeftSelect", + "command": "cursorWordPartLeftSelect", "when": "editorTextFocus" }, { @@ -451,9 +451,29 @@ "win": "alt+shift+right", "linux": "ctrl+alt+shift+right", "key": "ctrl+alt+shift+right", - "command": "cursorWordEndRightSelect", + "command": "cursorWordPartRightSelect", "when": "editorTextFocus" }, + { + "key": "ctrl+left", + "command": "cursorWordPartLeft", + "when": "editorTextFocus && isMac" + }, + { + "key": "ctrl+right", + "command": "cursorWordPartRight", + "when": "editorTextFocus && isMac" + }, + { + "key": "ctrl+shift+left", + "command": "cursorWordPartLeftSelect", + "when": "editorTextFocus && isMac" + }, + { + "key": "ctrl+shift+right", + "command": "cursorWordPartRightSelect", + "when": "editorTextFocus && isMac" + }, { "mac": "cmd+j", "key": "ctrl+j",