Supply default_mode in zpython bindings

This commit is contained in:
ZyX 2015-01-07 21:30:24 +03:00
parent 7d4440f3d6
commit 25b6643026
1 changed files with 5 additions and 0 deletions

View File

@ -141,6 +141,10 @@ class Prompt(object):
mode = u(zsh.getvalue('_POWERLINE_MODE'))
except IndexError:
mode = None
try:
default_mode = u(zsh.getvalue('_POWERLINE_DEFAULT_MODE'))
except IndexError:
default_mode = None
segment_info = {
'args': self.args,
'environ': environ,
@ -149,6 +153,7 @@ class Prompt(object):
'parser_state': zsh.getvalue('_POWERLINE_PARSER_STATE'),
'shortened_path': zsh.getvalue('_POWERLINE_SHORTENED_PATH'),
'mode': mode,
'default_mode': default_mode,
}
zsh.setvalue('_POWERLINE_PARSER_STATE', None)
zsh.setvalue('_POWERLINE_SHORTENED_PATH', None)