Browse Source

lang-check: highlight truncated strings

Yuri D'Elia 3 years ago
parent
commit
27d7edae10
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lang/lang-check.py

+ 1 - 1
lang/lang-check.py

@@ -44,7 +44,7 @@ def print_truncated(text, cols):
         suffix = ''
     else:
         prefix = text[0:cols]
-        suffix = text[cols:]
+        suffix = color_maybe(31, text[cols:])
     print('   |' + prefix + '|' + suffix)