Sublime Text4 c++运行配置
Posted Harris-H
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sublime Text4 c++运行配置相关的知识,希望对你有一定的参考价值。
Sublime Text4 c++运行配置
工具-编译系统-新建编译系统
然后把下面的内容粘贴
{
"encoding": "utf-8",
"working_dir": "$file_path",
"shell_cmd": "g++ -Wall -std=c++11 -fexec-charset=GBK \\"$file_name\\" -o \\"$file_base_name\\"",
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"selector": "source.c++",
"variants":
[
{
"name": "Run",
"shell_cmd": "g++ -Wall -std=c++11 -fexec-charset=GBK \\"$file\\" -o \\"$file_base_name\\" && start cmd /c \\"\\"${file_path}/${file_base_name}\\" & pause\\""
}
]
}
将自定义的编译系统设置为默认。
然后就可以ctrl+B
使用控制台运行程序了。
以上是关于Sublime Text4 c++运行配置的主要内容,如果未能解决你的问题,请参考以下文章
Sublime Text4 出现__init__() got an unexpected keyword argument ‘kill_previous‘