diff options
author | Joe <rbo@gmx.us> | 2024-04-25 20:20:20 +0200 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-04-25 20:20:20 +0200 |
commit | 80e1dc0b0b8a358a1a9a04802d37ef55821e0ed9 (patch) | |
tree | 8be2d2ab57e42fae8335717e2cebea933e8dfa43 /src/i_ui.go | |
parent | move was fast too (diff) | |
download | hardflip-80e1dc0b0b8a358a1a9a04802d37ef55821e0ed9.tar.gz hardflip-80e1dc0b0b8a358a1a9a04802d37ef55821e0ed9.tar.bz2 hardflip-80e1dc0b0b8a358a1a9a04802d37ef55821e0ed9.tar.xz hardflip-80e1dc0b0b8a358a1a9a04802d37ef55821e0ed9.tar.zst hardflip-80e1dc0b0b8a358a1a9a04802d37ef55821e0ed9.zip |
red
Diffstat (limited to '')
-rw-r--r-- | src/i_ui.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/i_ui.go b/src/i_ui.go index 3df9f49..e6155aa 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -653,6 +653,9 @@ func i_init_styles(ui *HardUI) { ui.style[YANK_STYLE] = tcell.StyleDefault. Background(tcell.ColorReset). Foreground(tcell.ColorYellow).Dim(true).Bold(true) + ui.style[MOVE_STYLE] = tcell.StyleDefault. + Background(tcell.ColorReset). + Foreground(tcell.ColorRed).Dim(true).Bold(true) } type key_event_mode_func func(*HardData, *HardUI, tcell.EventKey) bool |