Skip to content
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- Add R language support for PROC R (syntax highlighting, notebook cells, code formatting preservation) ([#1719](https://github.com/sassoftware/vscode-sas-extension/pull/1719))
- Add the ability to pin columns ([#1781](https://github.com/sassoftware/vscode-sas-extension/pull/1781))
- Fixed ordering of numbered filenames in SAS Content and SAS Server Panes ([#1847](https://github.com/sassoftware/vscode-sas-extension/pull/1847))
Comment thread
Wizzzzzzard marked this conversation as resolved.

## [1.19.1] - 2026-04-01

Expand Down
5 changes: 4 additions & 1 deletion client/src/components/ContentNavigator/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ export const sortedContentItems = (items: ContentItem[]) =>
} else if (!aIsDirectory && bIsDirectory) {
return 1;
} else {
return a.name.localeCompare(b.name);
return a.name.localeCompare(b.name, undefined, {
numeric: true,
sensitivity: "base",
});
}
});

Expand Down
Loading