We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b4183e commit 8f3e251Copy full SHA for 8f3e251
plugins/warp/src/plugin/workflow.rs
@@ -71,7 +71,9 @@ impl Command for RunMatcher {
71
72
pub fn run_matcher(view: &BinaryView) {
73
// TODO: Create the tag type so we dont have UB in the apply function workflow.
74
+ let undo_id = view.file().begin_undo_actions(false);
75
let _ = get_warp_tag_type(view);
76
+ view.file().forget_undo_actions(&undo_id);
77
78
// Alert the user if we have no actual regions (one comes from the synthetic section).
79
let regions = relocatable_regions(view);
0 commit comments