diff options
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 |