We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a conflicting shortcut with IDA 7.6
Conflicting shortcut: Shift+N; Candidate actions: hx:QuickRename (Quick rename...) HexRaysPyTools:RenameInside (Rename inside argument) Executing action: hx:QuickRename (Quick rename...)
The text was updated successfully, but these errors were encountered:
In the meantime, it can be disabled with:
diff --git a/HexRaysPyTools/callbacks/renames.py b/HexRaysPyTools/callbacks/renames.py index 19114d5..4e6de7c 100644 --- a/HexRaysPyTools/callbacks/renames.py +++ b/HexRaysPyTools/callbacks/renames.py @@ -343,7 +343,7 @@ class PropagateName(actions.HexRaysPopupAction): actions.action_manager.register(RenameOther()) -actions.action_manager.register(RenameInside()) +#actions.action_manager.register(RenameInside()) actions.action_manager.register(RenameOutside()) actions.action_manager.register(RenameUsingAssert()) actions.action_manager.register(PropagateName())
or changed to another hotkey:
class RenameInside(actions.HexRaysPopupAction): description = "Rename inside argument" hotkey = "Shift+N"
Sorry, something went wrong.
No branches or pull requests
There is a conflicting shortcut with IDA 7.6
The text was updated successfully, but these errors were encountered: