Visual Studio 2013 C ++ IntelliSense

I am using Visual Studio 2013 C ++ and my IntelliSense is a little weird, for example when I type con for const , the IntelliSense selector is in const , but it is not highlighted yet, so I need to move the arrow down and hit enter. How can I make it look like C # IntelliSense, how will it automatically select const when I press space or login?

+3


source to share


1 answer


Instead, you must press the TAB key. Anything in the selector will then be entered for you.



As in your example, when you typed con and the selector is in const , press TAB and const .

0


source







All Articles