刷新 VisualStudio 代码文件列表

VisualStudio 代码(OSX 上的版本0.10.11)不刷新文件夹中的文件。有没有办法强制刷新。目前我不得不关闭和重新打开整个程序。

148600 次浏览

EDIT: In the meanwhile a reload button has been added to the file explorer widget.

Use the workbench.action.reloadWindow command. Go to File -> Preferences -> Keyboard Shotcuts and define a shortcut for this command. On my system it's placed on Ctrl+F5. The entry in keybindings.json looks like this:

{
"key": "ctrl+f5",
"command": "workbench.action.reloadWindow",
"when": "editorTextFocus"
}

You can use the command palette to reload the window:

  1. Open the command palette with View > Command Palette... (or Shift+Cmd+P on OS X)
  2. Type reload window and press enter

Ran across this today with VS Code 1.13.0 and in Keyboard Shortcuts I see

workbench.files.action.refreshFilesExplorer

To reload a single file:

  • ⇧⌘P
  • type "Revert File"

On Windows:

  • Ctrl + Shift + P
  • type "Revert File"

Tested in VSCode v1.18.1 on Windows

You shouldn't need to reload the entire window, just the folder list. Reloading the window will kill terminals, lose undo history, etc. You can do this using the refresh button in the explorer (second from the right):

enter image description here

If you find you need to do this a lot you can add a keybinding for it, for example:

{
"key": "ctrl+f5",
"command": "workbench.files.action.refreshFilesExplorer"
}

"Ctrl + Alt + R" on v 1.27.1 as of 9/11/18

If you hover over the workspace root in the navigator, four icons appear to the right of it. The third of those icons, a circular arrow, is Refresh -- it reloads the file list.

enter image description here

Right-Click your sln (Will say 0/n solutions) In the bottom row of dialog it will say reload project solutions. If it's not present, then it was just reloaded most likely. Try to run build again.

If you use the SFTP extension you can do this for refreshing the SFTP:EXPLORER list (tested on Windows with VSC 1.40.2):

File => Preferences => Keyboard Shortcuts => Search for: refresh

Then you have to find "Refresh / sftp.remoteExplorer.refresh" in the result list. Click the entry, then click the plus sign before the entry, then press your desired shortcut and hit "enter". I took "Ctrl + Alt + F5" because this has not been used for other commands already.

When search.maintainFileSearchCache option is enabled I started to find the files with I'm using Ctrl-P shortcut

enter image description here