mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-31 14:24:25 +03:00
Support strikethrough text style
This commit is contained in:
@ -17,6 +17,8 @@ func GetTextStyle(keys []string, background bool) style.TextStyle {
|
||||
s = s.SetReverse()
|
||||
case "underline":
|
||||
s = s.SetUnderline()
|
||||
case "strikethrough":
|
||||
s = s.SetStrikethrough()
|
||||
default:
|
||||
value, present := style.ColorMap[key]
|
||||
if present {
|
||||
|
Reference in New Issue
Block a user