Some quality of life improvements
2 unresolved threads
2 unresolved threads
- Add current socket/snapshot name to title - this helps when you have multiple ghc-debug-brick sessions open
- Allow setting the search limit in the UI
- Show the current number of results as well as the search limit in the footer
- Add a command to find ARR_WORDS closures over a given size
- Only print the first 100 bytes of ARR_WORDS closures
- Allow dumping ARR_WORDS closures to a file so that ARR_WORDS over 100 bytes can be inspected
Edited by Zubin
Merge request reports
Activity
Filter activity
197 200 labelled lbl w = 198 201 hLimit 17 (txtLabel lbl <+> vLimit 1 (fill ' ')) <+> w <+> vLimit 1 (fill ' ') 199 202 200 footer :: FooterMode -> Widget Name 201 footer m = vLimit 1 $ 202 case m of 203 footer :: Int -> Maybe Int -> FooterMode -> Widget Name 204 footer n m mode = vLimit 1 $ - Resolved by Zubin
625 630 (modify $ footerMode .~ footerInput FProfile) 626 631 , Command "Find Retainers" (Vty.EvKey (KChar 'f') [Vty.MCtrl]) 627 632 (modify $ footerMode .~ footerInput FRetainer) 628 , Command "Find Retainers (Exact)" (Vty.EvKey (KChar 'e') [Vty.MCtrl]) 633 , Command "Find Retainers (Exact)" (Vty.EvKey (KChar 'u') [Vty.MCtrl]) 629 634 (modify $ footerMode .~ footerInput FRetainerExact) 635 , Command "Find Retainers of large ARR_WORDS" (Vty.EvKey (KChar 'g') [Vty.MCtrl]) - Resolved by Zubin
- Resolved by Zubin
Please register or sign in to reply