Good day. I use a bunch of Sublime + gcc to work with C. To do this, a sublime build was created:

{ "cmd": ["gcc", "*.c", "-o", "build.exe", "&&", "start", "cmd", "/k", "build.exe"], "selector": "source.c", "working_dir": "${file_path}", "shell": true } 

Everything works, the console opens the finished file, but now there is a need to work with Unicode support. If you leave

 "cmd": ["gcc", "*.c", "-o", "build.exe", "&&", "start", "cmd", "/k", "chcp 65001"], 

then cmd puts the desired encoding and remains in the folder with the finished file. No operands and record types help /

 "cmd", "/k", "chcp 65001", "&&", "build.exe" 

Is it possible to run several commands in this way? Thank.

    0