Skip to content

Instantly share code, notes, and snippets.

@MrSunshyne
Created January 14, 2021 06:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MrSunshyne/183c85da4269af3177c8ec0dfbd464c2 to your computer and use it in GitHub Desktop.
Save MrSunshyne/183c85da4269af3177c8ec0dfbd464c2 to your computer and use it in GitHub Desktop.
Sublime Text 3 User keymaps to have VS Code Keybindings
[
{ "keys": ["ctrl+shift+l"], "command": "find_all_under" },
{ "keys": ["ctrl+f2"], "command": "find_all_under" },
{ "keys": ["alt+shift+i"], "command": "split_selection_into_lines" },
{ "keys": ["ctrl+b"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+shift+b"], "command": "build" },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+shift+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["ctrl+shift+down"], "command": "select_lines", "args": {"forward": true} },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment