I just managed to setup lldb and add a rule to format (one of?) Nim's string 
type:`NimStringV2`

With this rule, the actual human-readable value of the string is shown in the 
editor, instead of an object containing a pointer to the actual characters

I did this by adding the following to the `.lldbinit` file:
    
    
    type summary add --summary-string "${var.p.data%S}" NimStringV2
    
    
    Run

Now I wonder whether someone before me has done the Lord's work and made an 
.lldbinit file available that contain more mapppigs like this for Nim types?

Reply via email to