在Windows计算机上,即使在更新文件后,我的Visual Studio代码仍继续向我显示文件的先前内容,但notepad ++
其行为方式不同。
有没有办法清理缓存,以便每次都接收新鲜内容?
Answers:
我认为,我理解正确。您可以按照以下步骤操作。
它将解决您的问题。
这对我有用。
在添加此任务.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}"
}
]
}
并在启动配置(.vscode/launch
)中使用任务
{
"version": "0.2.0",
"configurations": [
{
...
"preLaunchTask": "clear-editor-history"
...
}
]
}