mirror of
https://github.com/powerline/powerline.git
synced 2025-07-25 14:54:54 +02:00
Add auto_rewrite method to pre_0_11
It raises error without this.
This commit is contained in:
parent
d414a7e491
commit
2d9dd21a70
@ -10,6 +10,12 @@ class PowerlinePrompt(BasePrompt):
|
|||||||
|
|
||||||
def set_p_str(self):
|
def set_p_str(self):
|
||||||
self.p_str, self.p_str_nocolor = self.powerline.renderer.render(output_raw=True)
|
self.p_str, self.p_str_nocolor = self.powerline.renderer.render(output_raw=True)
|
||||||
|
self.nrspaces = len(self.rspace.search(self.p_str_nocolor).group())
|
||||||
|
self.prompt_text_len = len(self.p_str_nocolor) - self.nrspaces - 1
|
||||||
|
|
||||||
|
def auto_rewrite(self):
|
||||||
|
# TODO color this
|
||||||
|
return '%s>%s' % ('-'*self.prompt_text_len, ' '*self.nrspaces)
|
||||||
|
|
||||||
|
|
||||||
def setup(prompt='1'):
|
def setup(prompt='1'):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user