ZIm/crates/util/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
..
test Add #[track_caller] to test utilities that involve marked text (#32043) 2025-06-04 02:37:27 +00:00
arc_cow.rs Rust 1.85 (#25272) 2025-02-28 18:33:35 +01:00
archive.rs Verify downloaded rust-analyzer and clang binaries by checking the artifact digest (#35642) 2025-08-06 08:32:25 +00:00
command.rs windows: Set CREATE_NO_WINDOW for commands (#18447) 2024-11-20 16:52:38 -08:00
fs.rs Verify downloaded rust-analyzer and clang binaries by checking the artifact digest (#35642) 2025-08-06 08:32:25 +00:00
markdown.rs Refactor markdown formatting utilities to avoid building intermediate strings (#29511) 2025-04-27 19:04:51 +00:00
paths.rs Make alphabetical sorting the default (#32315) 2025-08-13 18:07:49 -04:00
redact.rs Redact license keys in environment variables from log output (#34711) 2025-07-18 14:28:20 +00:00
schemars.rs Misc code cleanups accumulated while working on other changes (#34787) 2025-07-20 23:22:13 +00:00
serde.rs Track cumulative token usage in assistant2 when using anthropic API (#26738) 2025-03-13 22:56:16 +00:00
shell_env.rs Fix Nushell environment variables (#35166) 2025-07-28 13:00:41 -04:00
size.rs agent: Create TerminalToolCard and display shell output while it's running (#29546) 2025-04-29 16:06:43 +00:00
test.rs Canonicalize paths when running tests (#23655) 2025-01-26 14:56:07 +08:00
time.rs agent: Create TerminalToolCard and display shell output while it's running (#29546) 2025-04-29 16:06:43 +00:00
util.rs python: Fix flickering in the status bar (#36039) 2025-08-12 13:36:28 +00:00