Skip to content

Commit 9460bc9

Browse files
authored
fix(leap): use LeapLabel (#582)
`LeapLabelPrimary`, `LeapLabelSecondary` deprecated ([b75a86f](ggandor/leap.nvim@b75a86f)) - Also updated extras colors ## What is this PR for? Brings back leap labels highlight ## Does this PR fix an existing issue? - Fixes #578
1 parent ee612bf commit 9460bc9

File tree

5 files changed

+5
-22
lines changed

5 files changed

+5
-22
lines changed

extras/lua/tokyonight_day.lua

+1-5
Original file line numberDiff line numberDiff line change
@@ -969,14 +969,10 @@ local highlights = {
969969
LeapBackdrop = {
970970
fg = "#8990b3"
971971
},
972-
LeapLabelPrimary = {
972+
LeapLabel = {
973973
bold = true,
974974
fg = "#d20065"
975975
},
976-
LeapLabelSecondary = {
977-
bold = true,
978-
fg = "#387068"
979-
},
980976
LeapMatch = {
981977
bg = "#d20065",
982978
bold = true,

extras/lua/tokyonight_moon.lua

+1-5
Original file line numberDiff line numberDiff line change
@@ -969,14 +969,10 @@ local highlights = {
969969
LeapBackdrop = {
970970
fg = "#545c7e"
971971
},
972-
LeapLabelPrimary = {
972+
LeapLabel = {
973973
bold = true,
974974
fg = "#ff007c"
975975
},
976-
LeapLabelSecondary = {
977-
bold = true,
978-
fg = "#4fd6be"
979-
},
980976
LeapMatch = {
981977
bg = "#ff007c",
982978
bold = true,

extras/lua/tokyonight_night.lua

+1-5
Original file line numberDiff line numberDiff line change
@@ -969,14 +969,10 @@ local highlights = {
969969
LeapBackdrop = {
970970
fg = "#545c7e"
971971
},
972-
LeapLabelPrimary = {
972+
LeapLabel = {
973973
bold = true,
974974
fg = "#ff007c"
975975
},
976-
LeapLabelSecondary = {
977-
bold = true,
978-
fg = "#73daca"
979-
},
980976
LeapMatch = {
981977
bg = "#ff007c",
982978
bold = true,

extras/lua/tokyonight_storm.lua

+1-5
Original file line numberDiff line numberDiff line change
@@ -969,14 +969,10 @@ local highlights = {
969969
LeapBackdrop = {
970970
fg = "#545c7e"
971971
},
972-
LeapLabelPrimary = {
972+
LeapLabel = {
973973
bold = true,
974974
fg = "#ff007c"
975975
},
976-
LeapLabelSecondary = {
977-
bold = true,
978-
fg = "#73daca"
979-
},
980976
LeapMatch = {
981977
bg = "#ff007c",
982978
bold = true,

lua/tokyonight/groups/leap.lua

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ function M.get(c, opts)
77
-- stylua: ignore
88
return {
99
LeapMatch = { bg = c.magenta2, fg = c.fg, bold = true },
10-
LeapLabelPrimary = { fg = c.magenta2, bold = true },
11-
LeapLabelSecondary = { fg = c.green1, bold = true },
10+
LeapLabel = { fg = c.magenta2, bold = true },
1211
LeapBackdrop = { fg = c.dark3 },
1312
}
1413
end

0 commit comments

Comments
 (0)