forked from goodboy/tractor
1
0
Fork 0

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

proper_breakpoint_hooking
Tyler Goodlet 2023-04-19 15:31:02 -04:00
parent ed5eabd054
commit 4759e301cb
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):
'''