Info
This post is auto-generated from RSS feed The Rust Programming Language Forum - Latest topics. Source: Vscode feature: maybe use File nest for sub mod
rust 2015
├── lib.rs
└── foo/
├── mod.rs
└── bar.rs
rust 2018
.
├── lib.rs
├── foo.rs
└── foo/
└── bar.rs
with File nesting in VS Code maybe
.
└── lib.rs
└── foo.rs
└── bar.rs
VSCode 1.64 add feature File nesting
, So we can do this by add "lib.rs": "*.rs",
to explorer.fileNesting.patterns
"*.rs": "$(capture)/"
not work.
2 posts - 2 participants
🏷️ Rust_feed