开发者

Move between variables using keyboard shortcuts

开发者 https://www.devze.com 2023-01-13 18:11 出处:网络
Is it possible to move quickly from one place开发者_如何学C in code to another where variable is used? For example I have variable String strResponse and it used in several places in code. I want to g

Is it possible to move quickly from one place开发者_如何学C in code to another where variable is used? For example I have variable String strResponse and it used in several places in code. I want to get from one place where variable used to another quickly using keyboard shortcuts. Is it possible?

VS has "Find all references" option but that's not what I am looking.


Visual Studio 2010 has something like this out of the box: Highlighted references. But since you're using Visual Studio 2008 you're out of luck when it boils down to default stuff. However you can install Resharper which has something similar: shift+alt+F11.


Use bookmarks

Bookmark all variable occurrence then use following shortcut keys to navigate between bookmarks

  • Select variable

  • Ctrl + F & select "Bookmark All"

  • Then use

  • Ctrl + K, Ctrl + P - previous bookmark

  • Ctrl + K, Ctrl + N - next bookmark

0

精彩评论

暂无评论...
验证码 换一张
取 消