-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Code folding/Indentation marking in DecompilerPanel #1294
Comments
I think this is a fantastic idea. |
Not a perfect solution, but this works:
As this uses the |
Can you share an updated version of this please? I think it is a necessary feature to have during the reversing process. |
My change in #1294 (comment) hasn't changed. |
Thanks for the quick response, while trying to fold the code I got the following error (which is whyI assumed it needed to be updated):
|
Humble apologies, I've found a change to
|
Thanks again, yet this didnt fix the bug i mentioned before.
Also added the next line to the function
This way it worked pretty well and I was indeed able to fold the code |
Turns out I modified
in the |
This is very needed! some times there are 20 indentations, and it is impossible to follow |
Implement code folding. This patch is based on Wall-AF's work available at: NationalSecurityAgency#1294
Is your feature request related to a problem? Please describe.
For functions that are long and have many nested statements, it is hard to see the scope where a line of code is being executed, since there are so many different scopes exiting and being entered into.
Describe the solution you'd like
It would be nice to have indentation markings, to know which level of scope you are in, just like here:
Furthermore, if we could 'fold' certain scopes so that the view is less cluttered, it will also be useful.
The text was updated successfully, but these errors were encountered: