告诉 Sublime Text 3 总是默认为 "Word Wrap Column: Automatic"?

Tell Sublime Text 3 to always default to "Word Wrap Column: Automatic"?

到处都找不到答案。

我希望 Sublime Text 3 对新文件和所有语法默认为 View > Word Wrap Column > Automatic

不是 寻找 "word_wrap": true … 知道了。

……有什么想法吗?谢谢你。

控制自动换行的设置是:

    // Disables horizontal scrolling if enabled.
    // May be set to true, false, or "auto", where it will be disabled for
    // source code, and otherwise enabled.
    "word_wrap": "auto",

    // Set to a value other than 0 to force wrapping at that column rather than the
    // window width
    "wrap_width": 0,

第一个控制自动换行是始终打开、始终关闭还是根据文件类型自动选择。您已将其设置为 true,这使自动换行无处不在。

第二个指定换行列的设置。默认值 0 对应于 window 的宽度换行,这是您想要的 Automatic 设置,同时将其设置为特定于该列的其他值换行。

请注意,这两个设置都是编辑器设置,因此您首选项中的设置是默认设置,但它们也可以在语法特定设置、项目设置以及逐个文件的基础上被覆盖(如果您使用更改值的菜单项)。

因此,如果您没有看到设置在某些类型的文件中正确应用,请打开该类型的文件并使用 Preferences > Settings - Syntax Specific 打开该类型文件的特定设置并手动调整或在那里添加设置。

同样,如果它在某些项目中有效而在其他项目中无效,请使用菜单中的 Project > Edit Project 并调整项目中的 settings 键(默认情况下项目没有,因此您只需如果您或其他人添加了一个并强制设置,则需要执行此操作)。

对于使用菜单调整的view具体设置,您可以通过菜单再次调整设置或关闭并重新打开文件,这将删除您的调整并恢复正常这些设置通常适用。