首页 > 代码库 > Sublime Python 插件配置合集

Sublime Python 插件配置合集

Python PEP8 Autoformat 插件

 

这是用来按PEP8自动格式化代码的。可以在包管理器中安装。快捷键 CTRL+SHIFT+R 自动格式化python代码

 1 { 2     "auto_complete": false, 3     "caret_style": "solid", 4     "ensure_newline_at_eof_on_save": true, 5     "find_selected_text": true, 6     "font_size": 11.0, 7     "highlight_modified_tabs": true, 8     "line_padding_bottom": 0, 9     "line_padding_top": 0,10     "scroll_past_end": false,11     "show_minimap": false,12     "tab_size": 4,13     "translate_tabs_to_spaces": true,14     "trim_trailing_white_space_on_save": true,15     "wide_caret": true,16     "word_wrap": true,17 }

引用自

http://www.cnblogs.com/waising/articles/3466120.html

Sublime Python 插件配置合集