Sublime Forum

Is it possibile to see the builds system using CTRL+SHIFT+P?

#1

I want a fast way to change the build system.

I tried to do it with the plugin “Edit Command Platte”, and add all my build systems, as commands.]
The issue was, that the commands are global, but the build system are per project

0 Likes

#2

I search days for solution, and some minutes after posting in the forum I found an answer.

I added the build systems as variants. Now I can see all the variants using CTRL+Shift+P

{
	"cmd": "echo sdf",
	"working_dir": "${project_path:${folder}}",
	"shell":true,
	"file_regex":"\\.js",
	"variants":
	
	  {
	    "name": "Run",
	    "cmd": "dir"],
	    "shell":true
	  },
	  {
	    "name": "Run2",
	    "cmd": "dir"],
	    "shell":true
	  }
	]
}

0 Likes