mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-25 06:24:56 +00:00
It's possible to configure `sort_mode` for the project panel like that:
```json
"project_panel": {
"sort_mode":"directories_first"
}
```
However, `workspace: open files` doesn't respect this setting and always
shows files and directories mixed. This change fixes the issue.
Release Notes:
- Improved sorting in `workspace: open files`
---------
Co-authored-by: Christopher Biscardi <chris@christopherbiscardi.com>
35 lines
845 B
TOML
35 lines
845 B
TOML
[package]
|
|
name = "open_path_prompt"
|
|
version = "0.1.0"
|
|
publish.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
file_icons.workspace = true
|
|
futures.workspace = true
|
|
fuzzy.workspace = true
|
|
gpui.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
project_panel.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
settings.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = {workspace = true, features = ["test-support"]}
|
|
gpui = {workspace = true, features = ["test-support"]}
|
|
serde_json.workspace = true
|
|
theme = {workspace = true, features = ["test-support"]}
|
|
theme_settings.workspace = true
|
|
workspace = {workspace = true, features = ["test-support"]}
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/open_path_prompt.rs"
|