History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-23320
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Blocker Blocker
Assignee: Oleg Stepanov
Reporter: Carsten Jendro
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ReSharper

r# eats remarks when autocomplete with TAB

Created: 06 Aug 06 15:35   Updated: 09 Sep 06 13:33
Component/s: Code Completion
Fix Version/s: 2.0.1
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 236
Fixed in build: 253
Old URL: http://www.intellij.net/tracker/resharper/viewSCR?publicId=23320


 Description  « Hide
before:

		ArrayList mandnt = new <cursor here, selecting ArrayList with tab>

		/// <summary>
		/// Foo Bar.
		/// </summary>
		[STAThread]
		static void Main(string[] args)
		{

result:

		ArrayList mandnt = new ArrayList(STAThread);
		static void Main(string[] args)
		{


 All   Comments   Work Log   Change History      Sort Order:
Valentin Kipiatkov - 09 Aug 06 11:37
Re: #23320- r# eats remarks when autocomplete with TAB
Code completion should never replace "[]" with "()"! Just leave them as is.
BTW in case when variable type is not reference type, the range is not replaced but highlighted - bug.