Team/TOOLS

[ VSCODE ] 새로 실행시 자동 restore 로드 방지

HEON.D 2024. 7. 5. 16:10
  1. Open Settings:
    • Open VS Code.
    • Press Ctrl + , (Windows/Linux) or Cmd + , (Mac) to open the Settings.
  2. Search for "window.restoreWindows":
    • In the Settings search bar, type window.restoreWindows.
  3. Change the Setting:
    • Locate the Window: Restore Windows setting.
    • From the dropdown menu, select none. This setting ensures that VS Code opens with a new empty window each time.
  4. Alternatively, Modify the settings.json File:
    • If you prefer to edit the settings directly in the settings.json file, click the Open Settings (JSON) icon in the top right corner of the settings pane.
    • Add the following line to your settings.json file:
"window.restoreWindows": "none"

Here is a step-by-step guide with screenshots:

  1. Open Settings:
    • Open VS Code.
    • Click on the gear icon in the bottom left corner and select Settings, or press Ctrl + , (Windows/Linux) or Cmd + , (Mac).
  2. Search for "window.restoreWindows":
    • Type window.restoreWindows in the search bar at the top of the Settings panel.
  3. Change the Setting:
    • Click on the dropdown menu next to Window: Restore Windows.
    • Select none.
  4. Modify settings.json (Optional):
    • Click on the Open Settings (JSON) icon in the top right corner of the Settings panel.
    • Add or modify the following line in the settings.json file:
      json
      코드 복사
      "window.restoreWindows": "none"

This configuration will ensure that VS Code opens a new empty window by default, rather than reopening the last session.

 

'Team > TOOLS' 카테고리의 다른 글

[ VSCODE ] 한글 입력 오류 해결  (0) 2022.11.28
[ Chrome ] Notification Settings  (0) 2022.08.22
[ Chrome ] 디자인 모드 활성  (0) 2022.08.22
[ Chrome ] 개발자모드 user agent 변경  (0) 2022.08.17
[ TOOLS ] oh my zsh  (0) 2022.08.01