Sublime Forum

Mac mouse shortcuts changed

#1

Hi there,

This is driving me nuts:

After installing 3103, my shortcuts for inserting a new caret changed from Command+Left Mouse to Command+Alt+Left mouse. I know this sounds like a small thing but it’s killing my muscle memory.

OS X 10.10.5, if it matters. Has anyone else hit this? Is there some way to override the system and change it back?

Thanks.

0 Likes

#2

It should work. Perhaps a plugin is interfering? If you type sublime.log_commands(True) in the console and press ⌘-Left Click, what is displayed?

0 Likes

#3

Thanks for replying-- here’s the commands that get echoed:

This is what happens when I do a Command+Click:
lookup {“event”: {“button”: 1, “x”: 604.5, “y”: 321.5}}
command: drag_select {“event”: {“button”: 1, “x”: 677.5, “y”: 327.5}}

This is Command+Alt+Click:
command: lookup {“event”: {“button”: 1, “x”: 677.5, “y”: 327.5}}
command: drag_select {“additive”: true, “by”: “columns”, “event”: {“button”: 1, “x”: 669.5, “y”: 347.5}}

So they are firing two different commands. If I just left click, it doesn’t fire the lookup but the drag_select{“event”, …} line is the same

0 Likes

#4

Printing “lookup” is not normal. A quick google search shows the NimLime plugin does this, and it has a sublime-mousemap file that overrides the drag_select command. Uninstalling the plugin should fix things.

0 Likes

#5

You’re a godsend, mate. NimLime removed. I’m going to have to yell at the plugin author. :slightly_smiling:

0 Likes