Fix tcsh escaping

`!` gets expanded to the prompt count, so it needs to be escaped.
This commit is contained in:
ZyX 2014-11-28 23:03:06 +03:00
parent c949f4ce95
commit c8286e96b0
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ class TcshPromptRenderer(ZshPromptRenderer):
character_translations[ord('%')] = '%%'
character_translations[ord('\\')] = '\\\\'
character_translations[ord('^')] = '\\^'
character_translations[ord('!')] = '\\!'
renderer = TcshPromptRenderer