For a custom data renderer: ```package com.example...
# intellij
r
For a custom data renderer:
Copy code
package com.example.test

import ....prettyPrint
import ....Value

object DebugRenderers {
    @JvmStatic
    fun valuePretty(value: Value) = value.prettyPrint()
}
but then I want to add a custom data renderer in the debugger, and can't seem to get it to work, it always marks the
DebugRenderers
with red (the path up until it is white). I'd use the original prettyPrint() extension but seems like extensions don't work either. What am I missing? Can we even use a custom function for a data renderer in the debugger (ticket)?