Created
March 3, 2016 20:50
-
-
Save thefrench77/4aa071c09d045a1ac087 to your computer and use it in GitHub Desktop.
Visual Studio-like mouse controls for Sublime Text 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| [ | |
| // 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