resharper 7.1 autocompletion and erase everything on the right -


suppose have line:

return _jsonparser.parse(_filereader.read(filelocation)) ; 

then, remove "_jsonparser.parse" part:

return (_filereader.read(filelocation)) ; 

then start writing

return _csvp(_filereader.read(filelocation)) ; 

then press tab, here's happens

return _csvparser 

the autocompletion did complete variable, erases line on right.

how disable ? in resharper 5.1 didn't have problem.

try using enter key. enter inserts, tab replaces. resharper 8 introduces ability configure this.


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -