Open mconnew opened 4 years ago
That is a good request. I thought about it several but never implemented to avoid too many links being displayed which kills the debugger. Next time I work on NetExt I will consider it. I will keep this thread open until I implement it or verify it will bring more problems than solution.
Is your feature request related to a problem? Please describe. When investigating an issue I will have a set of objects of a particular type that I wish to output a table of some of the internal values for. The !wfrom command works great for this, but I would like the ability to add DML to the output so that I can one-click drill in. For example, it's typical to output the object address as the first item on the row. Being able to output a dml snippet so that clicking on it will execute "!wdo $addr()" would be great.
Describe the solution you'd like My ideal solution would be some helper expression methods. For example $dmllink(text, command). So for example I could do something like this (pulling from the help output from !wfrom):
I don't know if color output works in windbg, but I know that dml supports it so being able to set the color of things would also be useful. If helper methods is too difficult due to ambiguity of syntax or too many options (such as right click commands on dml needing overloads) then just supporting being able to provide the raw dml command as part of the output string would be great.
Describe alternatives you've considered I tried emitting the dml in the output already, it didn't work.