Can I make R # intellisense select the first item in a list?

I use ReSharper 5.1 in VS2010, and I have been annoying intellisense behavior for quite some time. This seems to be different from R # 4.5 / VS2008, but I don't have this combination to check.

Let's say I type in the code:

...
public Guid teamId { get; set; }
...

And later, I decided that I wanted to make the teamIdproperty read-only, so I’ll go back to put it privatein front of set. When I start typing, I get the following:

picture of R # Intellisense menu

At this point, I should either switch to the mouse, or the arrow keys, or just finish typing private, which really wins the purpose of this function.

Is there a way to tell ReSharper to select an entry as soon as the Intellisense popup appears?

+3
1

Ctrl + Space, "pr" "private" Ctrl + Space ", " pr ", .

+4

Source: https://habr.com/ru/post/1770831/


All Articles