Sublime Forum

Totally disabling Fullscreen (OSX)?

#1

Hi,
I was wondering if it was possible to totally disable fullscreen mode on OSX. I accidentally hit the full screen mode key combo more than I would like on a daily basis and it gets annoying. I’ve also tried to change the key binding to something totally random, but didn’t seem to work. Pressing ctrl+cmd+F still prompted full screen.

0 Likes

#2

In your user keybindings, just bind the fullscreen keybinding to “noop”

0 Likes

#3

Tried doing that in my “Key Bindings - User”, but still getting full screen. Here’s what I have:

{ "keys": "noop"], "command": "toggle_full_screen" }, { "keys": "noop"], "command": "toggle_distraction_free" }

0 Likes

#4

@ninja, you are doing it wrong. You want to bind a key to noop, not noop to a command. So you need more like this:

{ "keys": "cmd+shift+f"], "command": "noop" } // or whatever is your shortcut you want to remove
0 Likes