`pdbp`: turn off line truncating by default, fixes terminal resizing stuff

master^2
Tyler Goodlet 2023-04-19 15:31:02 -04:00
parent 86aef5238d
commit 705538398f
1 changed files with 5 additions and 1 deletions

View File

@ -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):
''' '''