Add icon for Cairo files (#33268)

Discussion: https://github.com/zed-industries/zed/discussions/33270

Release Notes:

- Add file icon for the Cairo programming language.

---------

Co-authored-by: Danilo Leal <daniloleal09@gmail.com>
This commit is contained in:
okhai 2025-06-23 18:53:55 -05:00 committed by GitHub
parent 95f10fd187
commit 371b7355d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -81,6 +81,7 @@ const FILE_SUFFIXES_BY_ICON_KEY: &[(&str, &[&str])] = &[
("bicep", &["bicep"]),
("bun", &["lockb"]),
("c", &["c", "h"]),
("cairo", &["cairo"]),
("code", &["handlebars", "metadata", "rkt", "scm"]),
("coffeescript", &["coffee"]),
(
@ -279,6 +280,7 @@ const FILE_ICONS: &[(&str, &str)] = &[
("bicep", "icons/file_icons/file.svg"),
("bun", "icons/file_icons/bun.svg"),
("c", "icons/file_icons/c.svg"),
("cairo", "icons/file_icons/cairo.svg"),
("code", "icons/file_icons/code.svg"),
("coffeescript", "icons/file_icons/coffeescript.svg"),
("cpp", "icons/file_icons/cpp.svg"),