Author Topic: How can I go back to start point after I use go to implementation?  (Read 3510 times)

Offline huzhongshan

  • Multiple posting newcomer
  • *
  • Posts: 109
In visual c++ 6.0 , when I use go to definition to find the function implementations , I can press ctrl+* to go back to the start point , can cb do the same thing? How?

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: How can I go back to start point after I use go to implementation?
« Reply #1 on: December 17, 2011, 03:11:44 am »
I don't think there is such feature.
You can try the browse tracker plugin, it should implement something similar.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5916
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: How can I go back to start point after I use go to implementation?
« Reply #2 on: December 17, 2011, 06:34:36 am »
I don't think there is such feature.
You can try the browse tracker plugin, it should implement something similar.
Yes, browse tracker plugin has this feature (jump backward and jump forward).
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.