gpt4 book ai didi

sublimetext - 如何使 Sublime Text 在文件夹下显示子目录包含模式?

转载 作者:行者123 更新时间:2023-12-03 13:35:05 25 4
gpt4 key购买 nike

我有一个 SublimeText3 项目,用于在侧边栏中显示特定文件夹。这可行,但是 folder_include_pattern 中文件夹的子目录在项目中不可见(如果我将项目作为文件夹打开,它们显然就在那里)。

node_modules
my-module
('test' should be here but is not shown)
my-other-module
('test' should be here but is not shown)

这是我的 .project 文件:
{
"folders": [
{
"path": "node_modules",
"folder_include_patterns": [
"my-module",
"my-other-module"
]
},
{
"path": "."
}
]
}

如何显示 folder_include_patterns 中目录的所有子目录?

最佳答案

已解决:子目录名称也必须在 folder_include_patterns .例如,包括 /node_modules/my-module/test , 我需要:

 {
"folders": [
{
"path": "node_modules",
"folder_include_patterns": [
"my-module",
"my-other-module",
"test"
]
},
{
"path": "."
}
]
}

2018年更新:请注意,如果您在 2018 年阅读此内容,并且想要为 node_modules 执行此操作,处理 monorepos(项目中包含一些自己的模块)的最佳方式是通过 yarn workspaces

关于sublimetext - 如何使 Sublime Text 在文件夹下显示子目录包含模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28453057/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com