Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text Build System With Options

I have various shell build scripts for a project and want to create one centralized build system with options that will allow which shell script to run. For example, a user presses Cmd + B then the user is given the option:

1) shellscript1.sh
2) shellscript2.sh
3) shellscript3.sh

The user presses 3 and Sublime Text runs 'sh shellscript3.sh'.

I've been reading http://sublimetext.info/docs/en/reference/build_systems.html, but am unsure how to integrate this option in the JSON code for the Sublime Text build system.

How do you accomplish this in a build system in Sublime Text 2?

Thanks!

like image 778
wwwuser Avatar asked Oct 09 '22 12:10

wwwuser


2 Answers

Actually, you do not need your own plugin. All you need are build variants. Here's simple example using your example commands:

{
  "name Script 1",
  "cmd": ["shellscript1.sh", "$file"],
  "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
  "working_dir": "${project_path:${folder:${file_path}}}",

  "variants":
  [
    {
      "name": "Script 2",
      "cmd": ["shellscript2.sh", "$file"]
    },
    {
      "name": "Script 3",
      "cmd": ["shellscript3.sh", "$file"]
    }
  ]
}

Save this in your User preferences folder as MyScript.sublime-build. You will then be able to select it from the build menu, turning off the automatic target.

Now, when you press Command+B (on Mac, Control+B on Windows and Linux), the default target executes Script 1, on your file, but you can also select either of the variants.

See this answer, also, for a build file that I personally use providing variants for different Make targets.

like image 187
dbn Avatar answered Oct 13 '22 11:10

dbn


I don't know enough python to give you the specific code, but it looks like you need to write your own exec.py to handle an array of the commands and provide the control logic. Then in the JSON file, you would just need to write the value of the "cmd" key as [["first cmd"], ["second cmd"],..., ["last cmd"]],.

I'm following this question; I really like your idea.

like image 36
Colin R Avatar answered Oct 13 '22 11:10

Colin R