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

switch_to_pdbp
Tyler Goodlet 2023-04-19 15:31:02 -04:00
parent adaea6e6ef
commit 8b9cc44950
1 changed files with 5 additions and 1 deletions

View File

@ -158,13 +158,17 @@ class Lock:
class TractorConfig(pdbp.DefaultConfig):
'''
Custom ``pdbp`` goodness.
Custom ``pdbp`` goodness :surfer:
'''
use_pygments = True
sticky_by_default = 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):
'''