# Visual Studio-style mouse controls for Sublime Text

Create C:\\Users\\(YOURNAME)\\AppData\\Roaming\\Sublime Text 3\\Packages\\User\\Default (Windows).sublime-mousemap, and fill it with:

\[  
// Ctrl-click word select  
{  
"button": "button1", "count": 1, "modifiers": \["ctrl"\],  
"press\_command": "drag\_select",  
"press\_args": {"by": "words"}  
}  
// Column select  
,{  
"button": "button1",  
"count": 1,  
"modifiers": \["alt"\],  
"press\_command": "drag\_select",  
"press\_args": {"by": "columns"}  
}  
\]
