编程语言
首页 > 编程语言> > c – Sublime text 3 – 编译程序并在终端中运行

c – Sublime text 3 – 编译程序并在终端中运行

作者:互联网

我正在使用Ubuntu 12.04,我想知道,是否有可能从终端自动运行c程序?当你不得不在构建控制台中使用它时,它真的很糟糕,因为有时候我会意外地创建无限循环,并且必须重新启动sublime文本再次工作.
我正在使用Sublime文本3.

解决方法:

Sublime Text 3包含两个您可能感兴趣的构建系统:C和Make. C .sublime-build文件如下:

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

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

要使用它,请转到工具 – >构建系统并选择C.您现在可以使用CtrlB来运行构建(top命令),或者使用CtrlShiftB来运行Run变量.

标签:c,ubuntu,sublimetext3,compiler-construction
来源: https://codeday.me/bug/20190928/1827303.html