Skip to content

Commit 7d316b7

Browse files
committed
Author: Lonny Jepson <jiskiras@gmail.com>
1 parent a6d0b53 commit 7d316b7

28 files changed

Lines changed: 185 additions & 25 deletions

ext_bn/retsync/__init__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@
4343
def add_commands(plugin):
4444
DbgAction = namedtuple('DbgAction', 'name, key_seq, handler')
4545
plugin_actions = (
46-
DbgAction("SyncEnable", QKeySequence(Qt.ALT + Qt.Key_S), UIAction(plugin.cmd_sync)),
47-
DbgAction("SyncDisable", QKeySequence(Qt.ALT + Qt.SHIFT + Qt.Key_S), UIAction(plugin.cmd_syncoff)),
48-
DbgAction("SyncGo", QKeySequence(Qt.ALT + Qt.Key_F5), UIAction(plugin.cmd_go)),
46+
DbgAction("SyncEnable", QKeySequence(Qt.ALT | Qt.Key_S), UIAction(plugin.cmd_sync)),
47+
DbgAction("SyncDisable", QKeySequence(Qt.ALT | Qt.SHIFT | Qt.Key_S), UIAction(plugin.cmd_syncoff)),
48+
DbgAction("SyncGo", QKeySequence(Qt.ALT | Qt.Key_F5), UIAction(plugin.cmd_go)),
4949
DbgAction("SyncStepOver", QKeySequence(Qt.Key_F10), UIAction(plugin.cmd_so)),
5050
DbgAction("SyncStepInto", QKeySequence(Qt.Key_F11), UIAction(plugin.cmd_si)),
51-
DbgAction("SyncTranslate", QKeySequence(Qt.ALT + Qt.Key_F2), UIAction(plugin.cmd_translate)),
51+
DbgAction("SyncTranslate", QKeySequence(Qt.ALT | Qt.Key_F2), UIAction(plugin.cmd_translate)),
5252
DbgAction("SyncBp", QKeySequence(Qt.Key_F2), UIAction(plugin.cmd_bp)),
53-
DbgAction("SyncHwBp", QKeySequence(Qt.CTRL + Qt.Key_F2), UIAction(plugin.cmd_hwbp)),
54-
DbgAction("SyncBpOneShot", QKeySequence(Qt.ALT + Qt.Key_F3), UIAction(plugin.cmd_bp1)),
55-
DbgAction("SyncHwBpOneShot", QKeySequence(Qt.CTRL + Qt.Key_F3), UIAction(plugin.cmd_hwbp1))
53+
DbgAction("SyncHwBp", QKeySequence(Qt.CTRL | Qt.Key_F2), UIAction(plugin.cmd_hwbp)),
54+
DbgAction("SyncBpOneShot", QKeySequence(Qt.ALT | Qt.Key_F3), UIAction(plugin.cmd_bp1)),
55+
DbgAction("SyncHwBpOneShot", QKeySequence(Qt.CTRL | Qt.Key_F3), UIAction(plugin.cmd_hwbp1))
5656
)
5757

5858
for action in plugin_actions:

ext_ghidra/.project

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,15 @@
2121
<location>D:/tools/ghidra/ghidra_9.1</location>
2222
</link>
2323
</linkedResources>
24+
<filteredResources>
25+
<filter>
26+
<id>1746245785073</id>
27+
<name></name>
28+
<type>30</type>
29+
<matcher>
30+
<id>org.eclipse.core.resources.regexFilterMatcher</id>
31+
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
32+
</matcher>
33+
</filter>
34+
</filteredResources>
2435
</projectDescription>
4.29 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)