Skip to content

Instantly share code, notes, and snippets.

@lateshift
Last active August 4, 2023 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lateshift/061423fa466ede40e058aee488611dee to your computer and use it in GitHub Desktop.
Save lateshift/061423fa466ede40e058aee488611dee to your computer and use it in GitHub Desktop.
Basic VSCode keys in Sublime Text
[
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } },
{ "keys": ["shift+alt+down"], "command": "duplicate_line" },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment