Dave Cousineau
- Total activity 236
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 26
- Subscriptions 69
-
Created "Color Usage" indicator for custom types?
There are indicators (inlay hints?) that show a color example when using instances of System.Drawing.Color. eg:This is very nice, but is it possible to get these for other color types? I have my ow... -
Edited General Issues When Dealing With File Templates
In 2024.2 not sure which other versions, it seems you cannot properly name File Templates. Add a new (C#) file template Give it a description (eg: asdf) Click on any another file template Click bac... -
Created Unknown database function 'date'
In SQL dialect for postgresql, the IDE does not recognize the date function(s). (For me this is postgresql 9.3).This should be valid SQL for postgres:SELECT date('2024/1/1');and indeed, it does exe... -
Created Build Step of Unit Test Run No Longer Shows
When you run some unit tests, first a build is performed. This build is no longer shown in the UI. The UI just does nothing while the build happens. Nothing is shown on the build window. Additional... -
Edited Wrong tooltips when window does not have focus
This applies specifically to using multiple monitors/windows; when Rider itself does not have focus at all, there are no tooltips. (That could be an issue too but not exactly what I'm reporting). (... -
Edited Problems by type?
How to view code issues by type/category? This used to be possible, but does not seem to be possible anymore with your new “problems” window.100 files with 1 warning each is not nice to browse thro... -
Created Jagged array creation with wrong size specified does not show as error.
This code should show as an error but does not:var array1 = new object?[][3];This code is ok:var array2 = new object?[3][];This code should show an error and does:var array3 = new object?[][]; -
Edited Previous location stack often misses actions that should add to it.
I was going to say that “go to next error” does not add the location to the previous location stack, but testing this out, it seems a bit more broken than that.I'm not 100% sure which actions are s... -
Edited How to select other overloads?
This has been bugging me for a while. How do we browse through the list of overloads? When looking at parameter info, it shows the list of overloads, and the most likely candidate is selected, but ... -
Created Sort unit tests by code?
Unit tests seem sorted alphabetically by default. Is it possible instead to have them in code order? There doesn't seem to be a sorting option at all?Thanks