themes kitten: Also underline trigger keys on confirmation page. Apparently some people use color themes where SGR 31 does not contrast with the default foreground color.

This commit is contained in:
Kovid Goyal
2026-01-02 11:24:11 +05:30
parent 5375ca671c
commit d1b9b5ac4f

View File

@@ -560,7 +560,7 @@ func (self *handler) draw_accepting_screen() {
kc := self.lp.SprintStyled("italic", self.opts.ConfigFileName)
ac := func(x string) string {
return self.lp.SprintStyled("fg=red", x)
return self.lp.SprintStyled("fg=red underline=true", x)
}
self.lp.AllowLineWrapping(true)
defer self.lp.AllowLineWrapping(false)