0
0
.dotfiles/powerline-bin/powerline/renderers/shell/zsh.py

17 lines
445 B
Python
Raw Normal View History

2024-09-07 11:49:53 -04:00
# vim:fileencoding=utf-8:noet
from __future__ import (unicode_literals, division, absolute_import, print_function)
from powerline.renderers.shell import ShellRenderer
class ZshPromptRenderer(ShellRenderer):
'''Powerline zsh prompt segment renderer.'''
escape_hl_start = '%{'
escape_hl_end = '%}'
character_translations = ShellRenderer.character_translations.copy()
character_translations[ord('%')] = '%%'
renderer = ZshPromptRenderer