Adding support for emacs terminals

This commit is contained in:
Michael Lazar
2017-11-04 15:20:58 -04:00
parent cd4d9509ae
commit 29ea05f5bb
3 changed files with 9 additions and 1 deletions

View File

@@ -367,7 +367,9 @@ class Page(object):
else:
title = sub_name
if os.getenv('DISPLAY'):
# Setting the terminal title will break emacs or systems without
# X window.
if os.getenv('DISPLAY') and not os.getenv('INSIDE_EMACS'):
title += ' - rtv {0}'.format(__version__)
title = self.term.clean(title)
if six.PY3: