ZIm/crates/project_panel/src
Tom Planche e67b2da20c
Make alphabetical sorting the default (#32315)
Follow up of this pr: #25148

Release Notes:

- Improved file sorting.
As described in #20126, I was fed up with lexicographical file sorting
in the project panel. The current sorting behavior doesn't handle
numeric segments properly, leading to unintuitive ordering like
`file_1.rs`, `file_10.rs`, `file_2.rs`.


## Example Sorting Results
Using `lexicographical` (default):
```
.
├── file_01.rs
├── file_1.rs
├── file_10.rs
├── file_1025.rs
├── file_2.rs
```

Using alphabetical (natural) sorting:
```
.
├── file_1.rs
├── file_01.rs
├── file_2.rs
├── file_10.rs
├── file_1025.rs
```
2025-08-13 18:07:49 -04:00
..
project_panel.rs Project panel faster (#35634) 2025-08-08 14:32:58 +02:00
project_panel_settings.rs project panel: Add setting to disable auto opening project panel (#34752) 2025-08-08 05:02:11 +00:00
project_panel_tests.rs Make alphabetical sorting the default (#32315) 2025-08-13 18:07:49 -04:00
utils.rs Add Project Panel navigation actions in netrw mode (#20941) 2024-12-05 14:07:13 +01:00