Skip to content

Commit 7c8fb26

Browse files
- Update project version from 2.20.11 to 2.20.13
- Enhance emoji mappings with more appropriate icons: - Change Scala from '📐' to '♨️' - Update Haskell from '💻' to 'λ' - Update OCaml from 'Ⓜ️' to '🐫' - Update Clojure from '💻' to '🍃' - Update Elixir from '💻' to '⚗️' - Update F# from '💻' to '🔷' - Update Erlang from '🤹' to '🟥' - Add new VCS-related file extensions: - fossil, svn, hg - Add missing OCaml interface files (.mli)
1 parent 94f042d commit 7c8fb26

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ docs/man/facad-man-page.md
88
tags
99
.vscode
1010
.idea
11+
commands.txt

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('facad', 'c',
2-
version : '2.20.11',
2+
version : '2.20.13',
33
default_options : ['warning_level=3'])
44

55
cc = meson.get_compiler('c')

src/emoji_mappings.c

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const EmojiMapEntry emoji_extension_map[] = {
7272
{"xx", "🧢"},
7373
{"class", "☕"},
7474
{"kt", "💻"},
75-
{"scala", "📐"},
75+
{"scala", "♨️ "},
7676
{"jsx", "💻"},
7777
{"tf", "🏗️ "},
7878
{"tsx", "💻"},
@@ -88,20 +88,22 @@ const EmojiMapEntry emoji_extension_map[] = {
8888
{"f", "🅵"},
8989
{"f90", "🅵"},
9090
{"lisp", "💻"},
91-
{"hs", "💻"},
92-
{"ml", "Ⓜ️"},
93-
{"clj", "💻"},
91+
{"hs", "λ"},
92+
{"ml", "🐫"},
93+
{"mli", "🐫"},
94+
{"clj", "🍃"},
9495
{"groovy", "💻"},
9596
{"jl", "💻"},
96-
{"ex", "💻"},
97-
{"exs", "💻"},
97+
{"ex", "⚗️ "},
98+
{"exs", "⚗️ "},
9899
{"elm", "💻"},
99100
{"coffee", "☕"},
100101
{"ts", "🔷"},
101102
{"d", "🅳 "},
102103
{"cs", "💻"},
103104
{"vb", "💻"},
104-
{"fs", "💻"},
105+
{"fs", "🔷"},
106+
{"fsx", "🔷"},
105107
{"sql", "🗄️ "},
106108
{"pas", "🏫"},
107109
{"lhs", "💻"},
@@ -271,7 +273,7 @@ const EmojiMapEntry emoji_extension_map[] = {
271273
{"mjs", "🟡"},
272274
{"nuspec", "⚙️ "},
273275
{"iml", "🧩"},
274-
{"erl", "🤹"},
276+
{"erl", "🟥"},
275277
{"dump", "🛢️"},
276278
{"beam", "🔦"},
277279
{"vhdl", "🧠"},
@@ -280,10 +282,13 @@ const EmojiMapEntry emoji_extension_map[] = {
280282
{"v", "⚡"},
281283
{"vhd", "📜"},
282284
{"hex", "📟"},
283-
{"hash", "🖊️"},
284-
{"exr", "🏋️"},
285-
{"hdr", "🌌"},
286-
{"psd", "🖌️"},
285+
{"hash", "🖊️ "},
286+
{"exr", "🏋️"},
287+
{"hdr", "🌌"},
288+
{"psd", "🖌️"},
289+
{"fossil", "🦎"},
290+
{"svn", "🆂"},
291+
{"hg", "☿"}
287292
};
288293

289294
/** @brief Size of the emoji_extension_map array. */

0 commit comments

Comments
 (0)