Instantly share code, notes, and snippets.
custom keybindings since vscode does not support dict file https://damieng.com/blog/2015/04/24/make-home-end-keys-behave-like-windows-on-mac-os-x
{ "key": "ctrl+home", "command": "cursorTop", "when": "textInputFocus" }, { "key": "cmd+home", "command": "cursorTop", "when": "textInputFocus" }, { "key": "cmd+end", "command": "cursorBottom", "when": "textInputFocus" }, { "key": "ctrl+end", "command": "cursorBottom", "when": "textInputFocus" }, { "key": "ctrl+shift+home", "command": "cursorTopSelect", "when": "textInputFocus" }, { "key": "shift+cmd+home", "command": "cursorTopSelect", "when": "textInputFocus" }, { "key": "ctrl+shift+end", "command": "cursorBottomSelect", "when": "textInputFocus" }, { "key": "shift+cmd+end", "command": "cursorBottomSelect", "when": "textInputFocus" }, { "key": "shift+cmd+left", "command": "-cursorHomeSelect", "when": "textInputFocus" }, { "key": "shift+cmd+left", "command": "cursorWordLeftSelect", "when": "textInputFocus" }, { "key": "ctrl+shift+left", "command": "-editor.action.smartSelect.shrink", "when": "editorTextFocus" }, { "key": "ctrl+shift+left", "command": "cursorWordLeftSelect", "when": "textInputFocus" }, { "key": "shift+cmd+right", "command": "-cursorEndSelect", "when": "textInputFocus" }, { "key": "shift+cmd+right", "command": "cursorWordRightSelect", "when": "textInputFocus" }, { "key": "ctrl+shift+right", "command": "-editor.action.smartSelect.expand", "when": "editorTextFocus" }, { "key": "ctrl+shift+right", "command": "cursorWordRightSelect", "when": "textInputFocus" }
Sorry, something went wrong.
custom keybindings since vscode does not support dict file
https://damieng.com/blog/2015/04/24/make-home-end-keys-behave-like-windows-on-mac-os-x