I don't know if there's a name for this kind of behavior.
I've seen it in IntelliJ, where single-folder folders are unified or flattened in the project tree pane, where instead of:
.
├── pom.xml
├── src
│?? ├── main
│?? │?? ├── java
│?? │?? │?? └── com
│?? │?? │?? └── somepkg
│?? │?? │?? └── coreapi
│?? │?? │?? ├── controllers
│?? │?? │?? │?? ├── AssetMutations.java
│?? │?? │?? │?? ├── HomeController.java
│?? │?? │?? │?? └── SessionsQuery.java
│?? │?? │?? ├── CoreApiApplication.java
You see:
.
├── pom.xml
├── src
│?? ├── main
│?? │?? ├── java
│?? │?? │?? └── com.somepkg.coreapi
│?? │?? │?? ├── controllers
│?? │?? │?? │?? ├── AssetMutations.java
│?? │?? │?? │?? ├── HomeController.java
│?? │?? │?? │?? └── SessionsQuery.java
│?? │?? │?? ├── CoreApiApplication.java
Is there a way to make vs code tree-view file explorer to show subfolders this way?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…