Resharper 重新竖琴,自动完成后的新行

Resharper 重新竖琴,自动完成后的新行,resharper,keyboard-shortcuts,Resharper,Keyboard Shortcuts,我经常发现自己处于这样一种情况:我键入了一些东西,自动完成添加了右括号和右括号;但我仍然需要添加参数,完成后,我想跳转到新的行。 有捷径吗 例如: GL.ClearColor( -> autocomplete adds ); and puts the cursor inside => GL.ClearColor(|); GL.ClearColor(Color.Black|); -> now I've finished typing and my cursor is still

我经常发现自己处于这样一种情况:我键入了一些东西,自动完成添加了右括号和右括号;但我仍然需要添加参数,完成后,我想跳转到新的行。
有捷径吗

例如:

GL.ClearColor( -> autocomplete adds ); and puts the cursor inside  => GL.ClearColor(|);
GL.ClearColor(Color.Black|); -> now I've finished typing and my cursor is still inside, 
                            behind the last bracket, but I want to jump outside to new line
我正在VS2010中使用Resharper 7。
谢谢

试试:

在ReSharper 4中引入的Complete语句是 插入必要的语法元素(大括号、分号等)并获取 您可以转到开始下一个语句的位置,将您从 用插入符号做过多的杂耍。当你工作时,请记住 此功能的默认快捷方式: Ctrl+Shift+Enter

完整声明(也称为智能输入)在 许多场景,包括自动关闭括号,添加 分号,完成if、while和for语句,等等