ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Build​X

by cj1128 ST3

🎉 View sublime build output side by side with color!

Details

Installs

  • Total 1K
  • Win 617
  • Mac 234
  • Linux 304
Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11
Windows 0 0 0 1 0 0 0 1 0 1 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 2 0 0 1 0 0 0 1 3 0 0 1 0 1 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 3 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
Linux 0 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1

Readme

Source
raw.​githubusercontent.​com

Sublime BuildX

License

Show build output side by side with color!

Sublime build system is amazing. You can run/build your file/project right in the sulbime. But the annoying thing is that normally we want a side-by-side view of our build result rather than the default bottom view.

This plugin enhances sublime build system to show build output right in your side (of course you need to have two columns: View->Layout:Columns:2) and make it colorful!

Features

  • Show build output in a normal view instead of the default bottom panel
  • Automatically focus build output view if you have >=2 columns
  • Support ANSI colors
  • Support Build Results->Next Result and Build Results->Previous Result

Install

Search buildx in Package Control.

Usage

  1. Add "show_panel_on_build": false to your sublime preference to turn off default build panel.

  2. Add keybings for whatever keys you want to use to trigger the build.

e.g. If you want to use super+b to trigger build and super+shift+b to select the build target, add these key bindings:

{
  "keys": ["super+b"],
  "command": "build",
  "context": [{"key": "for_buildx", "operator":"equal", "operand":true}]
},
{
  "keys": ["super+shift+b"],
  "command": "build",
  "args": {"select": true},
  "context": [{"key": "for_buildx", "operator":"equal", "operand":true}]
},

Releases

1.3.0

  • Add clear_output_when_build_starts setting, closes #4.

MIT License

Released under the MIT license.