Sy

- Total activity 31
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 9
-
Created Show value of readonly/const on hover
I would like to be able to see the assigned value of readonly and const fields/properties/variables when hovering over them with the mouse. I can't find any setting for this; is it possible? -
Edited Rider insists on making Unity [Header] attributes inline
I have a very annoying issue where, whenever I create a Unity [Header] attribute and then put a field under it, Rider moves my field up onto the same line as the header. This is very unintuitive a... -
Created How to find usages of inherited constructor
I would like to find all usages of a constructor in inherited classes. Alternatively, I want to find all instances in which a class that inherits from a given class is instantiated. Is this possi... -
Created Code completion stopped working after update
I updated to Rider 2024.2.4 from 2024.1.x and now code completion/highlighting/intellisense/automatic formatting don't work when Rider is first started. When I open my solution highlighting works ... -
Created Changing constructor signature doesn't update base constructor calls
When I change the signature of a constructor I would expect all calls to that constructor in inherited classes to be updated as well, but this isn't the case. Is there any way to do this, or do I ... -
Created Unity - new scripts aren't automatically added to git
AnsweredWhenever I create a new script in Unity, the script is not added to git in Rider (file name is red and it doesn't show up in commits). This is not the usual new file behavior for a git repository ... -
Created Change color of selected variable in scrollbar
It's difficult to see instances of the selected item in the scroll bar. I would like to change the default dark blue to a more noticeable color but can't find the setting for this.Changing “Identi... -
Created Suppress expensive method warnings for entire class
I would like to disable the “expensive method invocation” warning for Unity's Debug class. I've tried adding // ReSharper disable Unity.PerformanceAnalysis to the Debug.Log method, but it has no e... -
Created How to customize code completion
I dislike the backwards autocompletion of foreach blocks. How can I modify or disable code completion only for foreach?