open-in-browser icon indicating copy to clipboard operation
open-in-browser copied to clipboard

On Mac OSX Default Key Binding Conflicts with OS Binding

Open flakrat opened this issue 8 years ago • 2 comments

The default open-in-browser on OSX conflicts with the operating systems "Log Out" binding. I've changed it to shift-cmd-B, which works, however I haven't done any digging to find out of that conflicts with anything.

'.platform-darwin atom-workspace atom-text-editor':
  'shift-cmd-B': 'open-in-browser:open'

image

flakrat avatar Jun 30 '17 16:06 flakrat

image

I'm having the same issue, unfortunately, disabling the keystroke does not allow me to re-toggle it either :/

Tracol avatar Aug 03 '17 20:08 Tracol

@Tracol the keybinding can be configured in your local .atom/keymap.cson file. You likely want to add the following to it.

'atom-workspace atom-text-editor':
  'cmd-shift-q': 'open-in-browser:open'

You can change this shortcut to be what you want.

Of course, this doesn't fix the issue. It's just a workaround.

Aerijo avatar Aug 11 '17 11:08 Aerijo