Clear file content cache in Visual Studio Code

Visual Studio-CodeVscode Settings

Visual Studio-Code Problem Overview


My Visual Studio code, on a Windows machine, keeps on showing me the previous content of a file even after this one has been updated, while notepad ++ doesn't behave in the same way.

Is there a way to somehow clean the cache so as to receive fresh content every time?

Visual Studio-Code Solutions


Solution 1 - Visual Studio-Code

I think, I understood correct. You can follow below steps.

  1. Press Ctrl + Shift + P
  2. type command Clear Editor History
  3. Press Enter

It will solve your problem.

Solution 2 - Visual Studio-Code

For me on macOS the following has worked:

  1. Press Cmd + Shift + P
  2. Type command Clear Search History
  3. Press Enter

Then for the search results:

  1. Press Cmd + Shift + P
  2. Type command Clear Search Results
  3. Press Enter

Solution 3 - Visual Studio-Code

This worked for me.

Adding this task in .vscode/tasks.json:

{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "clear-editor-history",
      "command": "${command:workbench.action.clearEditorHistory}"
    }
  ]
}

And using the task in launch configuration (.vscode/launch)

{
  "version": "0.2.0",
  "configurations": [
    {
      ...
      "preLaunchTask": "clear-editor-history"
      ...
    }
  ]
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJonathanView Question on Stackoverflow
Solution 1 - Visual Studio-CodeAnkit JainView Answer on Stackoverflow
Solution 2 - Visual Studio-CodeEyeView Answer on Stackoverflow
Solution 3 - Visual Studio-CodeIshtiaque KhanView Answer on Stackoverflow