diff options
Diffstat (limited to 'plugins/warp/src/plugin.rs')
| -rw-r--r-- | plugins/warp/src/plugin.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/warp/src/plugin.rs b/plugins/warp/src/plugin.rs index 5746a9bc..c396ebca 100644 --- a/plugins/warp/src/plugin.rs +++ b/plugins/warp/src/plugin.rs @@ -216,6 +216,18 @@ pub extern "C" fn CorePluginInit() -> bool { ); register_command_for_function( + "WARP\\Ignore Function", + "Add current function to the list of functions to ignore when matching", + function::IgnoreFunction {}, + ); + + register_command_for_function( + "WARP\\Remove Matched Function", + "Remove the current match from the selected function, to prevent matches in future use 'Ignore Function'", + function::RemoveFunction {}, + ); + + register_command_for_function( "WARP\\Copy GUID", "Copy the computed GUID for the function", function::CopyFunctionGUID {}, |
