The Visual Studio editor, in a regular C/C++ project, has a convenient keyboard capability where, for example, you type printf(” the editor auto-completes by adding the matching “) (i.e. close-quote and close-parentheses). However, then it provides the additional functionality where, if, after typing in your entry between the quote-symbols, you hit ‘Tab’, it jumps just between the close-quote and the close-parentheses, to allow you to enter any variables needed. And then allows you to hit ‘Tab’ again to jump just outside the close-parentheses so you can, normally, a semi-colon to end the line. I believe this is refererred to as the ‘TabOut’ functionality.
I’m noticing that when I am working in a VisualGDB project in Visual Studio, this TabOut capability is not enabled by default. Is there a setting I can specify to enable TabOut?
-
This topic was modified 10 months ago by gboy.