0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【VSCode】起動時に前回の設定で立ち上がらないようにする

Last updated at Posted at 2024-10-13

VSCodeでは終了後、再度開くと前回開いていたフォルダやSSHセッションに自動的に接続するような設定になっていると思います。
この設定をオフにします。

背景

デフォルトでは起動した際、前回の設定を復元するため、前に接続していたサーバーに自動で接続しにいく設定になっていると思います。
私はVS CodeをエディタよりもSSHクライアントとして使っており、ネットワーク設定や接続サーバーがコロコロ変わるため、この設定が煩わしく、この設定をオフにしたいと思いました。

解決

以下の設定をsetting.jsonに追記します。

// 前回開いていたウィンドウを復元しない
"window.restoreWindows": "none"

参考:window.restoreWindows

window.restoreWindowsに指定できる値としては以下のようなものがあるようです。

preserve 常にすべてのウィンドウを前回の状態で開く。
all すべてのウィンドウが再度開かれるが、新規のフォルダ等を指定して起動していた場合は新しいウィンドウとして開かれる。
folders すべてのウィンドウが再度開かれるが、新規のフォルダ等を指定して起動していた場合はそのフォルダのみが開かれる。
one 前回最後にアクティブだったウィンドウだけが1つだけ復元。
none 前回のウィンドウは再度開かず、空のウィンドウを表示。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?