空格转换为制表符

空格转换为制表符

我知道有很多关于此的帖子,但是我无法使它正常工作。
我使用标签进行编码。有没有办法将总是空格转换为制表符? IE。打开和保存文件?有人知道吗?

//编辑:
我的愿望是自动执行 ! ->打开,保存或即时
有谁知道该怎么办?

我尝试了this:

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",
    "font_size": 10,
    "format_on_save": true,
    "ignored_packages":
    [
        "Vintage"
    ],
    "indent_to_bracket": true,
    "open_files_in_new_window": false,
    "smart_indent": true,
    "tab_size": 4,
    "translate_tabs_to_spaces": false,
    "trim_automatic_white_space": true,
    "trim_trailing_white_space_on_save": true,
    "use_tab_stops": false,
    "word_wrap": false
}

最佳答案

在Sublime Text窗口的右下角,您会看到一个缩进指示符,看起来像这样:

单击它会打开一个菜单,其中包含用于调整缩进首选项(更重要的是Convert Indentation to Tabs/Spaces)的选项。

tabs -  Sublime Text 3,将空格转换为制表符-LMLPHP
View -> Indentation下列出了相同的菜单。

10-01 23:49