mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 15:07:16 +02:00
Made the tab, space and linebreak ansi characters case-insensitive. Resolves #522.
This commit is contained in:
parent
bb8c9ce2ab
commit
05c9d67ffc
1 changed files with 3 additions and 0 deletions
|
|
@ -223,8 +223,11 @@ class ANSIParser(object):
|
|||
(r'%cn', ANSI_NORMAL),
|
||||
(r'%ch', ANSI_HILITE),
|
||||
(r'%r', ANSI_RETURN),
|
||||
(r'%R', ANSI_RETURN),
|
||||
(r'%t', ANSI_TAB),
|
||||
(r'%T', ANSI_TAB),
|
||||
(r'%b', ANSI_SPACE),
|
||||
(r'%B', ANSI_SPACE),
|
||||
(r'%cf', ANSI_BLINK), # annoying and not supported by all clients
|
||||
(r'%ci', ANSI_INVERSE),
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue