diff options
author | hut <hut@lavabit.com> | 2012-02-24 02:03:25 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2012-02-24 02:03:25 +0100 |
commit | 9400aa042cee4230690155f61bc1f6de11bb9c06 (patch) | |
tree | aed453e0f93091628c6edcb7e34fb477c1ff94a4 | |
parent | 9ff49bf6b1004126b528b73c1d7822ce99581410 (diff) | |
download | ranger-9400aa042cee4230690155f61bc1f6de11bb9c06.tar.gz |
gui.ui: Added "rxvt-unicode-256color" to TERMINALS_WITH_TITLE
-rw-r--r-- | ranger/gui/ui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/gui/ui.py b/ranger/gui/ui.py index 5599190d..e6c7d065 100644 --- a/ranger/gui/ui.py +++ b/ranger/gui/ui.py @@ -23,8 +23,8 @@ from .mouse_event import MouseEvent from ranger.ext.keybinding_parser import ALT_KEY TERMINALS_WITH_TITLE = ("xterm", "xterm-256color", "rxvt", - "rxvt-256color", "rxvt-unicode", "aterm", "Eterm", - "screen", "screen-256color") + "rxvt-256color", "rxvt-unicode", "rxvt-unicode-256color", + "aterm", "Eterm", "screen", "screen-256color") MOUSEMASK = curses.ALL_MOUSE_EVENTS | curses.REPORT_MOUSE_POSITION |