Skip to content

Commit 6e35563

Browse files
authored
fix: remove dashes and underscores that seems to generate errors (#441)
1 parent fd4abfc commit 6e35563

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ ___Key/value pairs must appear in the same exact order!___
6868
- `color` must contain a color in the html notation
6969
- `cterm_color` must be below `color`, and it must contain a number (any number)
7070
- the correct value for `cterm_color` will be generated by the script
71+
- `name` must only contain alphanumeric characters (don't use `/`, `-`, `_`)
7172

7273
Ensure your current working directory is the repo root.
7374
Run `make`. This will:

lua/nvim-web-devicons/icons-default.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ local icons_by_filename = {
417417
icon = "",
418418
color = "#83b8f2",
419419
cterm_color = "110",
420-
name = "Kdenlive-layoutsrc",
420+
name = "KdenliveLayoutsrc",
421421
},
422422
["kdenliverc"] = {
423423
icon = "",
@@ -2991,7 +2991,7 @@ local icons_by_operating_system = {
29912991
icon = "",
29922992
color = "#c0c0c0",
29932993
cterm_color = "250",
2994-
name = "Hyperbola_GNU-Linux_libre",
2994+
name = "HyperbolaGNULinuxLibre",
29952995
},
29962996
["illumos"] = {
29972997
icon = "",
@@ -3021,7 +3021,7 @@ local icons_by_operating_system = {
30213021
icon = "",
30223022
color = "#fab402",
30233023
cterm_color = "214",
3024-
name = "Loc-OS",
3024+
name = "LocOS",
30253025
},
30263026
["lxle"] = {
30273027
icon = "",
@@ -3075,7 +3075,7 @@ local icons_by_operating_system = {
30753075
icon = "",
30763076
color = "#797dac",
30773077
cterm_color = "103",
3078-
name = "Parabola_GNU-Linux_libre",
3078+
name = "ParabolaGNULinuxLibre",
30793079
},
30803080
["parrot"] = {
30813081
icon = "",
@@ -3153,7 +3153,7 @@ local icons_by_operating_system = {
31533153
icon = "",
31543154
color = "#0f58b6",
31553155
cterm_color = "25",
3156-
name = "Trisquel_GNU-Linux",
3156+
name = "TrisquelGNULinux",
31573157
},
31583158
["ubuntu"] = {
31593159
icon = "",

lua/nvim-web-devicons/icons-light.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ local icons_by_filename = {
417417
icon = "",
418418
color = "#425c79",
419419
cterm_color = "24",
420-
name = "Kdenlive-layoutsrc",
420+
name = "KdenliveLayoutsrc",
421421
},
422422
["kdenliverc"] = {
423423
icon = "",
@@ -2991,7 +2991,7 @@ local icons_by_operating_system = {
29912991
icon = "",
29922992
color = "#404040",
29932993
cterm_color = "238",
2994-
name = "Hyperbola_GNU-Linux_libre",
2994+
name = "HyperbolaGNULinuxLibre",
29952995
},
29962996
["illumos"] = {
29972997
icon = "",
@@ -3021,7 +3021,7 @@ local icons_by_operating_system = {
30213021
icon = "",
30223022
color = "#7d5a01",
30233023
cterm_color = "94",
3024-
name = "Loc-OS",
3024+
name = "LocOS",
30253025
},
30263026
["lxle"] = {
30273027
icon = "",
@@ -3075,7 +3075,7 @@ local icons_by_operating_system = {
30753075
icon = "",
30763076
color = "#515373",
30773077
cterm_color = "60",
3078-
name = "Parabola_GNU-Linux_libre",
3078+
name = "ParabolaGNULinuxLibre",
30793079
},
30803080
["parrot"] = {
30813081
icon = "",
@@ -3153,7 +3153,7 @@ local icons_by_operating_system = {
31533153
icon = "",
31543154
color = "#0f58b6",
31553155
cterm_color = "25",
3156-
name = "Trisquel_GNU-Linux",
3156+
name = "TrisquelGNULinux",
31573157
},
31583158
["ubuntu"] = {
31593159
icon = "",

0 commit comments

Comments
 (0)