forked from goodboy/tractor
`pdbp`: turn off line truncating by default, fixes terminal resizing stuff
parent
ed5eabd054
commit
4759e301cb
|
@ -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):
|
||||
'''
|
||||
|
|
Loading…
Reference in New Issue