Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotkey for "step into last" or something similar #86

Open
cmuratori opened this issue Apr 15, 2019 · 0 comments
Open

Hotkey for "step into last" or something similar #86

cmuratori opened this issue Apr 15, 2019 · 0 comments

Comments

@cmuratori
Copy link

cmuratori commented Apr 15, 2019

If you're on a line with lots of function calls, like:

MyStupidFunction(WrapString("Foo"), V2(1.0f, 2.0f), 13, V3(1, 1, 1));

but you want to step into MyStupidFunction, it takes a long time to do it, because you have to step into and out of 3 different functions before you get to MyStupidFunction. It would be nice if there was a "step into the last call" hotkey.

As an alternative, a "fancy" thing to do here would be to display all the calls by number in some sort of HUD on the source, like:

  1. MyStupidFunction
  2. WrapString
  3. V2
  4. V3

and if you pressed the 1, 2, 3, or 4 keys, it would step into that particular function. I think these should maybe be listed in reverse order, like I did here, because that way you'd know that "step into last" is always the 1 key...

- Casey

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants