diff options
| -rw-r--r-- | ui-curses.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ui-curses.c b/ui-curses.c index 1bc145a..e38eb7b 100644 --- a/ui-curses.c +++ b/ui-curses.c @@ -563,6 +563,10 @@ static bool ui_window_syntax_style(UiWin *w, int id, const char *style) { cell_style.attr |= A_UNDERLINE; } else if (!strcasecmp(option, "notunderlined")) { cell_style.attr &= ~A_UNDERLINE; + } else if (!strcasecmp(option, "blink")) { + cell_style.attr |= A_BLINK; + } else if (!strcasecmp(option, "notblink")) { + cell_style.attr &= ~A_BLINK; } else if (!strcasecmp(option, "fore")) { cell_style.fg = color_fromstring(p); } else if (!strcasecmp(option, "back")) { |
