1. ホーム
  2. sublimetext2

[解決済み] Sublime Text 2の行末を修正する?

2022-04-20 23:43:33

質問

以下は私の Settings - User コンフィグ

{
    "auto_indent": true,
    "color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme",
    "default_line_ending": "LF",
    "detect_indentation": true,
    "font_size": 10.0,
    "ignored_packages":
    [
        "Vintage"
    ],
    "indent_to_bracket": false,
    "smart_indent": true,
    "tab_size": 4,
    "translate_tabs_to_spaces": true,
    "trim_automatic_white_space": true,
    "use_tab_stops": true
}

へのコメント default_line_ending オプションに書かれています。

新規にファイルを作成するときは、ここで行末を確認します。

見ての通りWindowsのままです...。 何か思い当たることはありませんか?

解決方法は?

コメントには次のように書かれています。

// Determines what character(s) are used to terminate each line in new files.
// Valid values are 'system' (whatever the OS uses), 'windows' (CRLF) and
// 'unix' (LF only).

を設定しています。

"default_line_ending": "LF",

を設定する必要があります。

"default_line_ending": "unix",