升华文字3,将空格转换为制表符
我知道有很多关于此的文章,但是我无法使它起作用。 我使用标签进行编码。有没有办法将总是空格转换为制表符?即在打开和保存文件?有人知道吗? //编辑: 我的愿望是自动执行此操作!->打开,保存或即时运行 有人知道怎么做吗? 我尝试了这个: import sublime, sublime_plugin, os class ExpandTabsOnSave(sublime_plugin.EventListener): # Run ST's 'expand_tabs' command when saving a file def on_pre_save(self, view): if view.settings().get('expand_tabs_on_save') == 1: view.window().run_command('expand_tabs') 这是我的用户设置: { "auto_complete_selector": "source - comment, meta.tag - punctuation.definition.tag.begin", "auto_indent": true, "detect_indentation": true, "draw_white_space": "all", "ensure_newline_at_eof_on_save": true, "expand_tabs_on_save": true, "font_face": "SourceCodePro-Regular", …