mirror of
https://github.com/powerline/powerline.git
synced 2025-04-08 19:25:04 +02:00
Fix tcsh escaping
`!` gets expanded to the prompt count, so it needs to be escaped.
This commit is contained in:
parent
c949f4ce95
commit
c8286e96b0
@ -10,6 +10,7 @@ class TcshPromptRenderer(ZshPromptRenderer):
|
||||
character_translations[ord('%')] = '%%'
|
||||
character_translations[ord('\\')] = '\\\\'
|
||||
character_translations[ord('^')] = '\\^'
|
||||
character_translations[ord('!')] = '\\!'
|
||||
|
||||
|
||||
renderer = TcshPromptRenderer
|
||||
|
Loading…
x
Reference in New Issue
Block a user