多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
#### sublime设置缩进空格 试着保存为Packages/User/Preferences.sublime-settings ~~~ { "ignored_packages": [ "Vintage" ], // The number of spaces a tab is considered equal to "tab_size": 4, // Set to true to insert spaces when tab is pressed "translate_tabs_to_spaces": true, //设置保存时自动转换 "expand_tabs_on_save": true, //显示空格 "draw_white_space": "all" } ~~~ 如果希望将tab转换成为空格,将`"translate_tabs_to_spaces": false`中的`false`改为`true`