Sublime Forum

How to view sublime text's default compilation command file?

#1

111

This is my first time using sublime text and I’m not sure how the build commands are written, so I need to refer to the default nim run build command.

I need to add the --deepcopy:on parameter to the Nim build so what should I do?

0 Likes

#2

Some information about build system basics can be found at https://www.sublimetext.com/docs/build_systems.html.

Nim ships a Nim.sublime-build json file with the command to run when hitting ctrl+b.

To modify the command line you can either create a new build system configuration file or override the default one. OverrideAudit package provides a command to do that easily.

2 Likes

#3

Thanks, problem solved OverrideAudit works great!

1 Like