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

Conflicting shortcut with IDA Pro 7.6 #77

Open
saidelike opened this issue Jun 4, 2021 · 1 comment
Open

Conflicting shortcut with IDA Pro 7.6 #77

saidelike opened this issue Jun 4, 2021 · 1 comment

Comments

@saidelike
Copy link

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...)
@saidelike
Copy link
Author

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"

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

No branches or pull requests

1 participant