Ubuntu Sublime Text 配置
使用Vim模式
- 在上方的首选项里点击 “ 设置 ”
- 在右侧代码栏里加入这份代码:
"ignored_packages": [],
- 保存,在首选项中打开快捷键设置
- 改为以下代码:
[
{ "keys": ["k", "j"], "command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
]
保存,完工
编译系统
- 点击此处
- 改为以下代码:
{
"cmd" : ["gnome-terminal -x bash -c \"g++ $file_name -o ${file_base_name} -lm -Wall; ./${file_base_name}; exec bash\""],
"selector" : "source.c, source.c++",
"shell":true,
"working_dir" : "$file_path"
}
保存为 "build_and_run"
- 最后如上一幅图,选中 "build_and_run"