summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/gui/ansi.py2
-rw-r--r--ranger/gui/color.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/ranger/gui/ansi.py b/ranger/gui/ansi.py
index a9b37665..ea024977 100644
--- a/ranger/gui/ansi.py
+++ b/ranger/gui/ansi.py
@@ -47,6 +47,8 @@ def text_with_fg_bg_attr(ansi_text):
 					attr |= color.bold
 				elif n == 4:
 					attr |= color.underline
+				elif n == 5:
+					attr |= color.blink
 				elif n == 7:
 					attr |= color.reverse
 				elif n == 8:
diff --git a/ranger/gui/color.py b/ranger/gui/color.py
index 58f0b38a..67be30f7 100644
--- a/ranger/gui/color.py
+++ b/ranger/gui/color.py
@@ -56,6 +56,7 @@ default = -1
 
 normal     = curses.A_NORMAL
 bold       = curses.A_BOLD
+blink      = curses.A_BLINK
 reverse    = curses.A_REVERSE
 underline  = curses.A_UNDERLINE
 invisible  = curses.A_INVIS