Windows和OSX上Sublime Text 2上的不同选项卡大小和对齐行为

时间:2013-09-12 22:09:37

标签: sublimetext2 sublimetext

我在家中使用Sublime在Mac上使用Sublime,而且我经常在Windows PC上使用它。

我在选项卡大小方面存在一些问题,设置相同但行为非常不同,以及Alignment插件无法正确对齐,当我在Mac上打开对齐文件时,它们没有对齐。

我也无法隐藏"不在文档的第一个选项卡中的div(如果它是缩进的,那么我无法隐藏它)

有谁知道如何解决这个问题?

我搜索了所有设置和Sublime论坛但没有运气

由于

1 个答案:

答案 0 :(得分:2)

首先,您应该在StackOverflow.com上针对每个问题发布一个问题,确切的示例是什么是实际问题。现在这是随机问题串起来,我只回答一个。

很可能您的Windows和OSX具有不同的配置(或插件)如何处理选项卡,即使您认为它们是相同的。所以我建议你粘贴你的配置文件。

这里记录了崇高的缩进设置:

http://www.sublimetext.com/docs/2/indentation.html

以下是一个示例配置,如何清理tab键以始终缩进4个空格并忽略可能的缩进设置Sublime Text尝试从文件中猜测(取自此博客文章):

// Tab and whitespace handling.
// Indent using spaces, 4 spaces ber indent by default, clean up extra whitespaces on save
"tab_size": 4,
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,

// Do not try to detect the tab size from the opened file
"detect_indentation" : false,

More about how tab character vs. space character appear in the text files (subjectional)