16 lines
366 B
Python
16 lines
366 B
Python
# vim:fileencoding=utf-8:noet
|
|
|
|
from powerline.renderers.shell import ShellRenderer
|
|
|
|
|
|
class BashPromptRenderer(ShellRenderer):
|
|
'''Powerline bash prompt segment renderer.'''
|
|
escape_hl_start = '\['
|
|
escape_hl_end = '\]'
|
|
|
|
@staticmethod
|
|
def escape(string):
|
|
return string.replace('\\', '\\\\').replace('$', '\\$').replace('`', '\\`')
|
|
|
|
|
|
renderer = BashPromptRenderer
|