Disable build window when building in Sublime Text 2

sublime-text-2

How can I prevent the build window from showing in Sublime Text 2 whenever I make a build with Ctrl+B?

Best Answer

The default setting is in Preferences.sublime-settingsin the Default bundle:

// Shows the Build Results panel when building. If set to false, the Build
// Results can be shown via the Tools/Build Results menu.
"show_panel_on_build": true,

You can either edit that, or add an override to your user settings (on OS X: Sublime Text 2 » Preferences » Settings – User or Cmd,).

Related Question