Question

Suppose I have this line:

return _jsonParser.Parse(_fileReader.Read(fileLocation)) ;

Then, I remove the "_jsonParser.Parse" part:

return (_fileReader.Read(fileLocation)) ;

Then I start writing

return _csvP(_fileReader.Read(fileLocation)) ;

Then I press tab, here's what happens

return _csvParser

the autocompletion did complete my variable, but it erases all the line on the right.

how to disable this ? In resharper 5.1 I didn't have this problem.

Was it helpful?

Solution

Try using the enter key. Enter inserts, tab replaces. ReSharper 8 introduces the ability to configure this.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top