Skip to content

Instantly share code, notes, and snippets.

@thefrench77
Created March 3, 2016 20:50
Show Gist options
  • Select an option

  • Save thefrench77/4aa071c09d045a1ac087 to your computer and use it in GitHub Desktop.

Select an option

Save thefrench77/4aa071c09d045a1ac087 to your computer and use it in GitHub Desktop.
Visual Studio-like mouse controls for Sublime Text 3
[
// Ctrl-click word select
{
"button": "button1", "count": 1, "modifiers": ["ctrl"],
"press_command": "drag_select",
"press_args": {"by": "words"}
},
// Alt-click column select
{
"button": "button1",
"count": 1,
"modifiers": ["alt"],
"press_command": "drag_select",
"press_args": {"by": "columns"}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment