From a30d624920ba5930121d73d2bdad09d13d5ca47e Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 10 Feb 2023 09:59:06 -0700 Subject: [PATCH] docs: command palette font size/color refs: https://github.com/wez/wezterm/issues/1485 --- docs/config/lua/config/command_palette_bg_color.md | 7 +++++++ docs/config/lua/config/command_palette_fg_color.md | 6 ++++++ docs/config/lua/config/command_palette_font_size.md | 6 ++++++ docs/config/lua/keyassignment/ActivateCommandPalette.md | 5 +++++ 4 files changed, 24 insertions(+) create mode 100644 docs/config/lua/config/command_palette_bg_color.md create mode 100644 docs/config/lua/config/command_palette_fg_color.md create mode 100644 docs/config/lua/config/command_palette_font_size.md diff --git a/docs/config/lua/config/command_palette_bg_color.md b/docs/config/lua/config/command_palette_bg_color.md new file mode 100644 index 000000000..dcee89423 --- /dev/null +++ b/docs/config/lua/config/command_palette_bg_color.md @@ -0,0 +1,7 @@ +# `command_palette_bg_color = "#333333"` + +*Since: nightly builds only* + +Specifies the background color used by +[ActivateCommandPalette](../keyassignment/ActivateCommandPalette.md). + diff --git a/docs/config/lua/config/command_palette_fg_color.md b/docs/config/lua/config/command_palette_fg_color.md new file mode 100644 index 000000000..bf8c0bcce --- /dev/null +++ b/docs/config/lua/config/command_palette_fg_color.md @@ -0,0 +1,6 @@ +# `command_palette_fg_color = rgba(0.75, 0.75, 0.75, 1.0)` + +*Since: nightly builds only* + +Specifies the text color used by +[ActivateCommandPalette](../keyassignment/ActivateCommandPalette.md). diff --git a/docs/config/lua/config/command_palette_font_size.md b/docs/config/lua/config/command_palette_font_size.md new file mode 100644 index 000000000..b93c1512a --- /dev/null +++ b/docs/config/lua/config/command_palette_font_size.md @@ -0,0 +1,6 @@ +# `command_palette_font_size = 12.0` + +*Since: nightly builds only* + +Specifies the size of the font used with +[ActivateCommandPalette](../keyassignment/ActivateCommandPalette.md). diff --git a/docs/config/lua/keyassignment/ActivateCommandPalette.md b/docs/config/lua/keyassignment/ActivateCommandPalette.md index 1f4f5a9b2..80f410fb1 100644 --- a/docs/config/lua/keyassignment/ActivateCommandPalette.md +++ b/docs/config/lua/keyassignment/ActivateCommandPalette.md @@ -40,3 +40,8 @@ fuzzy match, ranked in decreasing order of the match score. Activating the selected item will close the command palette and then invoke the action. + +See also: +* [command_palette_font_size](../config/command_palette_font_size.md) +* [command_palette_fg_color](../config/command_palette_fg_color.md) +* [command_palette_bg_color](../config/command_palette_bg_color.md)