LoginSignup
12
9

More than 5 years have passed since last update.

Atomで前回終了時のウィンドウをリストアしない

Posted at

Atomのデフォルトの動作では、起動時に前回終了時のウィンドウをリストアします。

Atomはメモ帳代わりに使っているのでデフォルトではOffになっていてほしい機能です🙍

これを無効にするには、設定ファイル(config.cson)にcore.restorePreviousWindowsOnStartを追加してfalseに設定します(Atom1.8以降)。

config.cson
"*":
  core:
    # ...
    restorePreviousWindowsOnStart: false # 追加
  # ...

config.csoncore.restorePreviousWindowsOnStartを追加するとSettings画面にも項目が表示されます。こちらでOn/Offを切り替えることも可能です。

atom_restore_previous_windows_on_start.png

これで晴れ晴れとした気持ちで使えます🙆

12
9
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
12
9