VsCode 添加忽略meta文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VsCode 添加忽略meta文件相关的知识,希望对你有一定的参考价值。
参考技术A"files.exclude":
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.meta":true
,
"search.exclude":
"**/node_modules": true,
"**/bower_components": true,
"**/.git": true,
"**/.svn": true,
"**/*.meta":true
,
"git.ignoreMissingGitWarning": true,
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"git.ignoreLegacyWarning": true,
"csharp.format.enable": false,
"terminal.integrated.shell.windows": "F:\\Git\\bin\\bash.exe",
"editor.fontSize": 18,
"workbench.colorTheme": "Monokai",
"editor.autoIndent": false,
"files.exclude":
"**/*.meta": true
,
"window.zoomLevel": -1,
"editor.codeActionsOnSave": null
macOS 上的 VSCode - 隐藏图标?文件
【中文标题】macOS 上的 VSCode - 隐藏图标?文件【英文标题】:VSCode on macOS - Hide Icon? file 【发布时间】:2022-01-22 12:30:18 【问题描述】:在 macOS 中,我在名为 Icon?
的目录中有一个文件,类似于 this question 中的文件。
我想添加一个模式来排除这个文件,但是我不确定要使用什么模式。
**/Icon
和 **/Icon\r
不起作用,我不想使用 **/Icon*
,因为它可能会忽略其他文件,例如 Icon.png
【问题讨论】:
【参考方案1】:使用模式 **/Icon?
为我工作
【讨论】:
以上是关于VsCode 添加忽略meta文件的主要内容,如果未能解决你的问题,请参考以下文章