Sergeant Coolagin
- Total activity 36
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 12
-
Edited How to detect code style in a solution?
I want to apply a code style that is used in a C# solution(cloned Github repository). I read this article: https://blog.jetbrains.com/dotnet/2018/12/05/detection-code-styles-naming-resharper/ In th... -
Created How to get back "document function" menu item back on alt+enter?
In the past when I'd press alt+enter, it would show in the menu and suggest to document function with a pattern. I don't remember the name of the item, but it was here: And when I'd press on thi... -
Edited Move cursor to specific places in a live template
I want to change default prop template: public $Type$ $Name$ { get; set; } So that when I press Tab after I enter Type and Name of a property, it would go to the place between get and ;, and then i... -
Created Show extended info about functions in R# IntelliSense like in VS's?
Is there a way to show extended info about functions in Resharper's IntelliSense, like it shows it in Visual Studio's?Here's what I get in VS's IntelliSense: And here's what I get in Resharper's In... -
Edited Is it possible to indent by operator in a multiline statement?
When I type something like: std::cout << "ISBN: " << transaction.bookNo << std::endl << "Units sold: " << transaction.units_sold << std::endl << "Price (each): " << transaction.price << std::... -
Edited Is there a way to change templates of 'Generate Implementation' function?
When I press Generate Implementation: Here's what it generates: If I do it with Visual Studio light bulbs, it adds return: Is there a way to make Resharper generate implementations the Visua... -
Created How to make VS generate event handlers based on control names in WinForms and WPF projects?
I'm using VS 2017 and Resharper.In WinForms projects Visual Studio generates event handlers for controls starting with lowercase: In WPF VS generates event handlers for controls starting with uppe... -
Edited How to show all Visual Studio's code snippets in Resharper's IntelliSense?
AnsweredResharper's IntelliSense only shows its own Live Templates but not Visual Studio's code snippets. Is there a way to make Resharper IntelliSense to show all VS code snippets? In Templates Explorer ... -
Edited Is there a shortcut to jump to a closing brace?
Is there a shortcut to jump outside of a code block, right after a closing brace } of a current code block? Let me explain. Let's say there's a method: private void Button_Click(object sender, Ev... -
Edited Why ReSharper Inspection is displaying only 1 of 28 found issues?
After inspecting code it is displaying only 1 of 28 found issues: How to display other 27 found issues that's left?