Install Terminus in Sublime Text | 2025 | Run C Code Easily

Опубликовано: 16 Февраль 2026
на канале: PHANTOM BD
410
7

WELCOME TO PHANTOM BD
---------------------------------------------------
TODAY I AM GOING TO SHOW YOU
===================================
HOW TO Install Terminus :
===================================

1.Open Sublime Text.
2.Go to Tools → Install Package Control.
3.Go to Preferences → Package Control.
4.Type: Install Package.
5.Press Enter.
6.Type: Terminus.
7.Press Enter.
8.Go to Tools → Build System → New Build System.
9.Copy and paste the given code and save it as C with Terminus.sublime-build.
10.Close Sublime Text and reopen it.
11. Go to Tools → Build System → C with Terminus.
12. Press Ctrl + B.

====================================
Code:
{

"target":"terminus_exec",
"cancel":"terminus_cancel_build",
"shell_cmd": "gcc \"${file}\" -o \"${file_path}/${file_base_name}\"",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c",

"variants":
[
{
"name": "Run",
"shell_cmd": "gcc \"${file}\" -o \"${file_path}/${file_base_name}\" && \"${file_path}/${file_base_name}\""
}
]
}


=====================================