Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #131 from flupke/patch-1
Browse files Browse the repository at this point in the history
Allow raw mode on rxvt terminals
  • Loading branch information
inducer committed Feb 4, 2015
2 parents 3221878 + 86c0a9c commit 0399a3d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pudb/debugger.py
Expand Up @@ -394,7 +394,11 @@ def _runscript(self, filename):
or (
CONFIG["display"] == "auto"
and
not os.environ.get("TERM", "").startswith("xterm")))
not (
os.environ.get("TERM", "").startswith("xterm")
or
os.environ.get("TERM", "").startswith("rxvt")
)))

from urwid.raw_display import Screen as RawScreen
if want_curses_display:
Expand Down

0 comments on commit 0399a3d

Please sign in to comment.