From 0a338c37312fc8e2571f367e46b83a542f52ada2 Mon Sep 17 00:00:00 2001 From: Jake Leahy Date: Tue, 27 Jan 2026 00:02:05 +1100 Subject: [PATCH] Update nim entry with additional file suffixes (#47616) Expanded the nim entry to include `nims` and `nimble` files - [nims](https://nim-lang.org/docs/nims.html) is a subscript of Nim that runs in a VM - [nimble](https://github.com/nim-lang/nimble) files are project files for Nim that are written in Nim Release Notes: - Updated Nim file aliases so icon is shown for nims/nimble files --- crates/theme/src/icon_theme.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/theme/src/icon_theme.rs b/crates/theme/src/icon_theme.rs index 818bf1b2f1b093729ed79fc0ed132cc3b3f74e5f..d3fe60d3cc3d8bd981fe9a6c37ab5a65be7e707f 100644 --- a/crates/theme/src/icon_theme.rs +++ b/crates/theme/src/icon_theme.rs @@ -164,7 +164,7 @@ const FILE_SUFFIXES_BY_ICON_KEY: &[(&str, &[&str])] = &[ ("luau", &["luau"]), ("markdown", &["markdown", "md"]), ("metal", &["metal"]), - ("nim", &["nim"]), + ("nim", &["nim", "nims", "nimble"]), ("nix", &["nix"]), ("ocaml", &["ml", "mli"]), ("odin", &["odin"]),