diff --git a/src/renderer/cell.zig b/src/renderer/cell.zig index 85c23e218..064aabc87 100644 --- a/src/renderer/cell.zig +++ b/src/renderer/cell.zig @@ -49,7 +49,10 @@ pub fn fgMode( break :text .normal; } - // Special-case Powerline glyphs + // Special-case Powerline glyphs. They exhibit box drawing behavior + // and should not be constrained. They have their own special category + // though because they're used for other logic (i.e. disabling + // min contrast). if (isPowerline(cp)) { break :text .powerline; }