在以前的 Visual Studio 版本中,我可以使用CTRL+->和CTRL+<-在整个符号之间移动,即在空格之间跳转:
当我的光标为CTRL:<-
void int GetMyInteger|();
将导致状态:
void int |GetMyInteger();
现在,在Visual Studio 2012中,行为已修改为如下所示:
当我的光标为CTRL:<-
void int GetMyInteger|();
将导致状态:
void int GetMy|Integer();
我希望恢复旧的行为,因为导航代码更有效。有什么配置可以让我改回来吗?