vscode远程服务器设置为不显示隐藏文件
时间: 2024-05-06 17:15:59 浏览: 175
VScode连接远程服务器上的jupyter notebook的实现
要在 VS Code 远程服务器中设置不显示隐藏文件,可以按照以下步骤进行操作:
1. 打开 VS Code 远程服务器,打开任意一个文件夹。
2. 按下快捷键 `Ctrl + Shift + P`(或者在菜单栏中选择 "View" -> "Command Palette")。
3. 在命令面板中输入 "Preferences: Open Settings (JSON)",并选择该命令。
4. 在打开的文件中添加以下代码:
```json
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"**/__pycache__": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
}
}
```
其中,`"files.exclude"` 用于指定需要排除的文件和文件夹,`"files.watcherExclude"` 用于指定需要排除的监视器文件和文件夹。
5. 保存文件并重新打开任意一个文件夹,即可看到隐藏文件已经被过滤掉了。
阅读全文