VSCode で前回開いていたフォルダを開かせないようにする
今回の目的は「VSCode をまっさらな状態 で起動できるようにする」です。
この設定は好みが別れると思いますが、
個人的には前回開いていたフォルダを開きたいとは限らないケースの方が多いのでOFFにしたいと思います。
前回開いていたフォルダを開かせないように設定を変更する
以下の設定を settings.json
に追加する。
{
"window.openWithoutArgumentsInNewWindow": "on",
"window.restoreWindows": "none"
}
window.restoreWindows
VSCode 再起動時の挙動に関する設定で none
にすることで何も開かないように制御できます。
公式ガイドから引用
The
window.restoreWindows
setting tells VS Code how to restore the opened windows of your previous session. By default, VS Code will restore all windows you worked on during your previous session (setting:all
). Change this setting tonone
to never reopen any windows and always start with an empty VS Code instance. Change it toone
to reopen the last opened window you worked on orfolders
to only restore windows that had folders opened.
window.openWithoutArgumentsInNewWindow
すでに VSCode が起動している時に VSCode を起動した場合の挙動に関する設定のようです。
こちらの記事がとても分かりやすかったです。