Resharper 相当于 CodeRush 的“Tab”快捷方式(转到下一个/上一个用法)
我正在尝试从 CodeRush 切换到 Resharper,但在这个问题上确实遇到了困难。
在 CodeRush 中,当您经过变量/方法等时,如果您按“Tab
”,它将跳转到它的下一个用法。类似于 VS.NET 的 Ctrl + Shift + Down/up
在 Resharper 中是否可以执行此操作?有没有任何插件或方法可以让我将 Tab 分配给 Resharper 中的类似命令?
I'm trying to switch to Resharper from CodeRush and really struggling with this one.
In CodeRush when you are over a variable/method etc. if you press "Tab
" it will jump to the next usage of it. Similar to VS.NET's Ctrl + Shift + Down/up
Is there anyway to do this in Resharper? Is there any plugin or a way for me to assign Tab to similar command in Resharper?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ReSharper 具有此功能,但仅在您找到或突出显示变量/方法/等的用法之后...
键盘快捷键取决于您使用的是 Visual Studio 还是 IDEA 键盘映射(在 ReSharper 中设置 - > 选项 -> Visual Studio 集成 -> Keybarod 快捷键)。
要查找用法,请按 Shift + F12 (Visual Studio) 或 Alt + F7 (IDEA)。
要突出显示用法,请按 Shift + Alt + F11 (Visual Studio) 或 Ctrl + Shift< /kbd> + F7 (IDEA)。
完成上述任一操作后,您可以使用 Ctrl + Alt + FPgDn (Visual Studio) 或 转到下一个用法>Ctrl + Alt + 向下 (IDEA)。
此 ReSharper 帮助页面有一套更完整的快捷键。
ReSharper has this functionality, but only after you have either found or highlighted the usages of a variable/method/etc...
The keyboard shortcuts depend on whether you are using the Visual Studio or IDEA keyboard mappings (set in
ReSharper -> Options -> Visual Studio Integration -> Keybarod Shortcuts
).To find the usages, press Shift + F12 (Visual Studio) or Alt + F7 (IDEA).
To highlight usages, press Shift + Alt + F11 (Visual Studio) or Ctrl + Shift + F7 (IDEA).
Once you have done either of the above, you can move to the next usage using Ctrl + Alt + FPgDn (Visual Studio) or Ctrl + Alt + Down (IDEA).
This ReSharper help page has a more complete set of shortcuts.