From a57a32cdb3f2e4ae1a1fe43353929770e6decbb2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 3 Jan 2024 09:43:24 -0800 Subject: [PATCH] config: clarify docs on resetting font-family --- src/config/Config.zig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/config/Config.zig b/src/config/Config.zig index 5d53c6c45..eb63f37ca 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -38,6 +38,13 @@ const c = @cImport({ /// available in the primary font. This is particularly useful for /// multiple languages, symbolic fonts, etc. /// +/// If you want to overwrite a previous set value rather than append +/// a fallback, specify the value as "" (empty string) to reset the list +/// and then set the new values. For example: +/// +/// font-family = "" +/// font-family = "My Favorite Font" +/// /// Changing this configuration at runtime will only affect new terminals, /// i.e. new windows, tabs, etc. @"font-family": RepeatableString = .{},