lonelymo
lonelymo

Reputation: 4182

How do I deliver a new build system in SublimeText3?

I have built a sublimetext3 plugin. Now I have added a build tool. To use this build tool, the user has to go to Tools->Build System->New Build System.

I consider this an extra hassle for the user. Is there a way to package it and deliver it along with the plugin?

Upvotes: 0

Views: 36

Answers (1)

idleberg
idleberg

Reputation: 12882

Simply add the .sublime-build file (and its dependencies like shell scripts) to the files in your ST package. Unless there's a conflict with another build system, the user can then build using the keyboard shortcut.

Build Systems

Upvotes: 1

Related Questions