Does anyone know if it is possible to associate the middle mouse button with an action in Sublime Text 2?
I know that mouse interaction is possible because you can use the back and forward buttons.
Basically, I was going to use this button to upload a file using the sFTP plugin to reduce the number of buttons that I would need to press from 3 to 1.
I currently have:
{ "keys": ["ctrl+shift+u"], "command": "sftp_upload_file" }
Ideally, it would be something like this:
{ "keys": ["mouse4"], "command": "sftp_upload_file" }
source share