- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我不知道这种行为有没有名字。
我在 IntelliJ 中看到过,其中单个文件夹的文件夹在项目树 Pane 中统一或展平,而不是:
.
├── pom.xml
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com
│ │ │ └── somepkg
│ │ │ └── coreapi
│ │ │ ├── controllers
│ │ │ │ ├── AssetMutations.java
│ │ │ │ ├── HomeController.java
│ │ │ │ └── SessionsQuery.java
│ │ │ ├── CoreApiApplication.java
你看:
.
├── pom.xml
├── src
│ ├── main
│ │ ├── java
│ │ │ └── com.somepkg.coreapi
│ │ │ ├── controllers
│ │ │ │ ├── AssetMutations.java
│ │ │ │ ├── HomeController.java
│ │ │ │ └── SessionsQuery.java
│ │ │ ├── CoreApiApplication.java
有没有办法让 vs code TreeView 文件资源管理器以这种方式显示子文件夹?
最佳答案
貌似在2019年6月的迭代计划中。
参见 Iteration plan for June, 2019: release in July, 2019和 issue: merging single child directories .
更新:制作成v1.41,将于2019年12月发布。见https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_41.md#compact-folders-in-explorer
Compact folders in Explorer
In the File Explorer, we now render single child folders in a compact form. In such a form, single child folders will be compressed in a combined tree element. Useful for Java package structures, for example.
Setting
explorer.compactFolders
controls this behavior. By default, this setting is turned on.
因此 "explorer.compactFolders": false,
将禁用该功能。
关于visual-studio-code - 有没有办法在 vs code explorer 中展平或合并单个文件夹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49254050/
我是一名优秀的程序员,十分优秀!