#sublime text 3 中 c++ sigle 无法使用。自行配置一个。
##配置如下:
生成的运行文件是在CPP源文件下的 可 执行文件 。
{
"cmd" : ["/usr/bin/g++ $file_name -std=c++11 -o ${file_base_name} && ./${file_base_name}"],
"selector" : "source.c, source.c++",
"shell": true,
"working_dir" : "$file_path"
}
##C++模板配置如下:
插件 sublimetmpl 增加其 ->main.sublime-menu 选项:
{
"id": "c++",
"caption": "c++",
"command": "sublime_tmpl",
"args": {
"type": "cpp"
}
},
增加其 ->Default(OSX).SUBLIME-keymap选项:
{
"keys": ["ctrl+alt+c"], "command": "sublime_tmpl",
"args": {"type": "cpp"}, "context": [{"key": "sublime_tmpl.cpp"}]
}
,
在插件路径下增加模板文件 cpp.tmpl:
路径如下:
/Users/liker/Library/Application Support/Sublime Text 3/Packages/SublimeTmpl/templates
以上可以放心 使用了。