小编最近在做python的开发,大家都知道python都是利用缩进来区分的代码块。小编在利用sublime开发的时候发现一个tab的的距离和四个空格的距离是相等的,但是呢,却不是四个空格的格式。这样python就回出现缩进错误。
下面小编说下解决的方案:
首先打开你的设置:
打开方式:Perferences->Settings(mac里面是Setting,windows里面应该是Setting-Use)
在你的个人设置里面添加如下内容:

"tab_size": 4,
"translate_tabs_to_spaces": true,
"expand_tabs_on_save": true

最终的user的设置就就变成以下的样子:

{
    "font_size": 20,
    "ignored_packages":
    [
        "Vintage"
    ],
       "tab_size": 4,
       "translate_tabs_to_spaces": true,
       "expand_tabs_on_save": true
}
Last modification:April 28, 2019
If you think my article is useful to you, please feel free to appreciate