Karsten Kousgaard
- Total activity 36
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 8
-
Created c# formatting
HiIf I have a long lin like thisvar name = Method(LongEnumType.WithALongMemberName, anotherLongVariableName, etc etc);Resharper reformat breaks is up like this (only when Method(..) can fit on a si... -
Created Don't refactor to nullable "type?"
Sorry for the confusing title. Let me show some code instead, if I have this codevar a = new Timer(null);and uses Refactor this on var, I get thisTimer? a = new Timer(null); Is it possible to make ... -
Created Can't change keyboard mapping for Resharper_Move up/down/left/right
AnsweredI'm trying to remap the keyboard shortcut for Resharper.ReSharper_MoveDown/Left/Right/Up from ctr+shift+alt+h/j/k/l (because they don't make any sense) to ctrl+shift+alt+up/down/left/right arrow, b... -
Created Two many press to undo
AnsweredHi I'm not sure if this i VS or R#, but here is a thing that's been annoying me for a long time now. I'm creating a method, and accidently presses [ (instead of {) and then enter, when I discover m... -
Created Create missing parameter
AnsweredHi. public static void Test(){ File.ReadAllLines();} With the cursor between ( and ) in ReadAllLines(). I want to generate a new path parameter like this public static void Test(string path){File.... -
Created Disable Correct Length/Count mistyping
AnsweredIs there a way to disable "Correct Length/Count mistyping" in https://www.jetbrains.com/help/resharper/Coding_Assistance_Typing_Assistance.html#enum_members -
Created Locks cursor
AnsweredIf the cursor is between t and ( in the following picture and I start typing Resharper locks the cursor, so I can't move it up or down. Is there a way to prevent the "No suggestions" dialog -
Created Cleanup code for all open files
Is it possible to do a code cleanup on all open files (only) in one shot? -
Created Don't open files on refactor
AnsweredIf I make a make a move to namespace refactoring in a C# file. Other files which have their using directives updated are automatically opened. Is there a way to turn this off? I don't wnat the file...