From 0018545263b6a8416b0b8b943be236ea0abb7a67 Mon Sep 17 00:00:00 2001 From: Joel Date: Sun, 22 May 2022 15:10:01 +1000 Subject: [PATCH] fix: remove duplicated `ui.help` in themes the bottom value is used, so i've removed the top `ui.help` values from all themes also, the values are not merged, so: ```toml "ui.help" = { modifiers = ["reversed"] } "ui.help" = { fg = "white", bg = "black" } ``` is equal to: ```toml "ui.help" = { fg = "white", bg = "black" } ``` --- base16_theme.toml | 1 - runtime/themes/autumn.toml | 1 - runtime/themes/base16_default_dark.toml | 1 - runtime/themes/base16_default_light.toml | 1 - runtime/themes/rose_pine.toml | 1 - runtime/themes/rose_pine_dawn.toml | 1 - 6 files changed, 6 deletions(-) diff --git a/base16_theme.toml b/base16_theme.toml index 42e02a98..5c0c253e 100644 --- a/base16_theme.toml +++ b/base16_theme.toml @@ -10,7 +10,6 @@ "comment" = { fg = "gray" } "ui.statusline" = { fg = "black", bg = "white" } "ui.statusline.inactive" = { fg = "gray", bg = "white" } -"ui.help" = { modifiers = ["reversed"] } "ui.cursor" = { fg = "white", modifiers = ["reversed"] } "variable" = "red" "constant.numeric" = "yellow" diff --git a/runtime/themes/autumn.toml b/runtime/themes/autumn.toml index 032e773a..afcc1a11 100644 --- a/runtime/themes/autumn.toml +++ b/runtime/themes/autumn.toml @@ -17,7 +17,6 @@ "ui.selection" = { bg = "my_gray3" } "comment" = { fg = "my_gray4", modifiers = ["italic"] } "ui.statusline" = { fg = "my_gray5", bg = "my_gray2" } -"ui.help" = { fg = "my_gray5", bg = "my_gray2" } "ui.cursor" = { fg = "my_gray5", modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "my_white", modifiers = ["reversed"] } "ui.text" = "my_white" diff --git a/runtime/themes/base16_default_dark.toml b/runtime/themes/base16_default_dark.toml index 6074c450..7516e492 100644 --- a/runtime/themes/base16_default_dark.toml +++ b/runtime/themes/base16_default_dark.toml @@ -11,7 +11,6 @@ "ui.selection" = { bg = "base02" } "comment" = { fg = "base03", modifiers = ["italic"] } "ui.statusline" = { fg = "base04", bg = "base01" } -"ui.help" = { fg = "base04", bg = "base01" } "ui.cursor" = { fg = "base04", modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "base05", modifiers = ["reversed"] } "ui.text" = "base05" diff --git a/runtime/themes/base16_default_light.toml b/runtime/themes/base16_default_light.toml index 2273c191..36847459 100644 --- a/runtime/themes/base16_default_light.toml +++ b/runtime/themes/base16_default_light.toml @@ -10,7 +10,6 @@ "ui.selection" = { bg = "base02" } "comment" = { fg = "base03", modifiers = ["italic"] } "ui.statusline" = { fg = "base04", bg = "base01" } -"ui.help" = { fg = "base04", bg = "base01" } "ui.cursor" = { fg = "base04", modifiers = ["reversed"] } "ui.cursor.primary" = { fg = "base05", modifiers = ["reversed"] } "ui.virtual" = "base03" diff --git a/runtime/themes/rose_pine.toml b/runtime/themes/rose_pine.toml index d005ac8a..f0575880 100644 --- a/runtime/themes/rose_pine.toml +++ b/runtime/themes/rose_pine.toml @@ -10,7 +10,6 @@ "comment" = "subtle" "ui.statusline" = {fg = "foam", bg = "surface" } "ui.statusline.inactive" = { fg = "iris", bg = "surface" } -"ui.help" = { fg = "foam", bg = "surface" } "ui.cursor" = { fg = "rose", modifiers = ["reversed"] } "ui.text" = { fg = "text" } "ui.text.focus" = { fg = "foam", modifiers = ["bold"]} diff --git a/runtime/themes/rose_pine_dawn.toml b/runtime/themes/rose_pine_dawn.toml index 1a9ac7df..5ad304e3 100644 --- a/runtime/themes/rose_pine_dawn.toml +++ b/runtime/themes/rose_pine_dawn.toml @@ -10,7 +10,6 @@ "comment" = "subtle" "ui.statusline" = {fg = "foam", bg = "surface" } "ui.statusline.inactive" = { fg = "iris", bg = "surface" } -"ui.help" = { fg = "foam", bg = "surface" } "ui.cursor" = { fg = "rose", modifiers = ["reversed"] } "ui.text" = { fg = "text" } "ui.text.focus" = { fg = "foam", modifiers = ["bold"]}