From 40f7d40e394657575001a8146d8233f1fc4356fd Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 12 Oct 2025 22:46:54 -0400 Subject: [WARP] Improve UX surrounding removal of matched functions - Adds Python API to remove matched function - Adds command + UI actions to remove matched function - Adds command + UI actions to ignore function in subsequent matches --- plugins/warp/src/plugin.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'plugins/warp/src/plugin.rs') 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 @@ -215,6 +215,18 @@ pub extern "C" fn CorePluginInit() -> bool { function::IncludeFunction {}, ); + 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", -- cgit v1.3.1