LoginSignup
2
1

More than 5 years have passed since last update.

Atom で .txt ファイルの個別設定をする

Last updated at Posted at 2017-05-09

小一時間ハマって悲しい思いをしました。
例) テキストファイルだけ文末のスペース削除を off する

GOOD

~/.atom/config.cson
"*":
  ...
  whitespace: {}
  ...
'.text':
  whitespace:
    removeTrailingWhitespace: false

BAD

~/.atom/config.cson
"*":
  ...
  whitespace: {}
  ...
'.txt':
  whitespace:
    removeTrailingWhitespace: false

(自分用メモ)言語ごとの場合は、

~/.atom/config.cson
'.source.python':
  whitespace:
    removeTrailingWhitespace: false
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1