When "Show parameter storage class at call site", deleting more than 1 line of code where the storage class is shown will crash visual studio. This makes the feature almost unusable. The crash happens very frequently in code that uses it, and it's taxing to think about the possibility of crashes every time I delete a block of code. Steps to reproduce: Visual studio version: 16.9.4 Visuald version: 1.1.1 Start a new project (or open any old D project). Make sure "Show parameter storage class at call site" is enabled in the settings. Then add the following function anywhere in the code. void crash() { void foo(ref int bar); int bar; foo(bar); foo(bar); } Now wait for the little "ref" to appear in the calls to foo. Then select both lines calling foo, and delete them.
fix finally released in https://github.com/dlang/visuald/releases/tag/v1.2.0-rc1