From 7eb3130fafd903389fcc3c4830d12e6c9ee29ad3 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 4 Oct 2023 22:09:20 -0700 Subject: [PATCH] config: update some docs --- src/config/Config.zig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/config/Config.zig b/src/config/Config.zig index 0088431a7..64f39dd9e 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -135,6 +135,12 @@ const c = @cImport({ /// There is little to no validation on these values so the wrong values /// (i.e. "-100%") can cause the terminal to be unusable. Use with caution /// and reason. +/// +/// Some values are clamped to minimum or maximum values. This can make it +/// appear that certain values are ignored. For example, the underline +/// position is clamped to the height of a cell. If you set the underline +/// position so high that it extends beyond the bottom of the cell size, +/// it will be clamped to the bottom of the cell. @"adjust-cell-width": ?MetricModifier = null, @"adjust-cell-height": ?MetricModifier = null, @"adjust-font-baseline": ?MetricModifier = null,