`pdbp`: turn off line truncating by default, fixes terminal resizing stuff
parent
86aef5238d
commit
705538398f
|
@ -158,13 +158,17 @@ class Lock:
|
||||||
|
|
||||||
class TractorConfig(pdbp.DefaultConfig):
|
class TractorConfig(pdbp.DefaultConfig):
|
||||||
'''
|
'''
|
||||||
Custom ``pdbp`` goodness.
|
Custom ``pdbp`` goodness :surfer:
|
||||||
|
|
||||||
'''
|
'''
|
||||||
# use_pygments = True
|
# use_pygments = True
|
||||||
sticky_by_default = True
|
sticky_by_default = True
|
||||||
enable_hidden_frames = False
|
enable_hidden_frames = False
|
||||||
|
|
||||||
|
# much thanks @mdmintz for the hot tip!
|
||||||
|
# fixes line spacing issue when resizing terminal B)
|
||||||
|
truncate_long_lines = False
|
||||||
|
|
||||||
|
|
||||||
class MultiActorPdb(pdbp.Pdb):
|
class MultiActorPdb(pdbp.Pdb):
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in New Issue