open-in-browser
open-in-browser copied to clipboard
On Mac OSX Default Key Binding Conflicts with OS Binding
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'


I'm having the same issue, unfortunately, disabling the keystroke does not allow me to re-toggle it either :/
@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.