-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmissed.txt
More file actions
3227 lines (3227 loc) · 287 KB
/
Copy pathmissed.txt
File metadata and controls
3227 lines (3227 loc) · 287 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
espanso-engine/src/process/middleware/image_resolve.rs:43:9: replace <impl Middleware for ImageResolverMiddleware<'_>>::name -> &'static str with "xyzzy"
espanso-detect/src/hotkey/keys.rs:265:13: delete match arm
espanso/src/cli/match_cli/mod.rs:36:5: replace match_main -> i32 with 0
espanso-detect/src/evdev/device.rs:129:20: replace && with || in Device::read
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:620:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:559:9: delete match arm
espanso-config/src/config/resolve.rs:228:9: replace <impl Config for ResolvedConfig>::word_separators -> Vec<String> with vec![String::new()]
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:157:5: replace convert_params -> espanso_render::Params with Default::default()
espanso-detect/src/evdev/sync/wayland.rs:420:79: replace / with * in SimpleWindow::draw
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:518:9: delete match arm
espanso-detect/src/win32/mod.rs:198:17: replace && with || in <impl Source for Win32Source>::eventloop::callback
espanso-inject/src/x11/xdotool/mod.rs:125:46: replace + with - in X11XDOToolInjector::fast_release_all_keys
espanso-inject/src/keys.rs:277:13: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:300:9: replace <impl KeyboardHandler for SimpleWindow>::enter with ()
espanso/src/patch/patches/linux/emacs_x11.rs:28:50: replace && with || in patch
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:511:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:206:9: delete match arm
espanso-inject/src/x11/xdotool/mod.rs:227:35: replace * with / in <impl Injector for X11XDOToolInjector>::send_key_combination
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:149:9: delete match arm
espanso-detect/src/win32/mod.rs:391:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:658:9: delete match arm
espanso-detect/src/win32/mod.rs:425:9: delete match arm
espanso-detect/src/win32/mod.rs:437:9: delete match arm
espanso-inject/src/evdev/mod.rs:170:48: replace + with - in EVDEVInjector::generate_maps
espanso-inject/src/x11/default/mod.rs:470:9: replace <impl Drop for X11DefaultInjector>::drop with ()
espanso/src/cli/launcher/edition_check.rs:41:5: replace get_session_type -> Option<String> with None
espanso-inject/src/x11/default/mod.rs:413:30: replace << with >> in X11DefaultInjector::xtest_send_modifiers
espanso-detect/src/x11/mod.rs:182:40: replace << with >> in <impl Source for X11Source>::initialize
espanso-render/src/extension/date.rs:123:9: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:364:9: replace <impl ShmHandler for SimpleWindow>::shm_state -> &mut Shm with Box::leak(Box::new(Default::default()))
espanso-engine/src/process/middleware/disable.rs:71:57: replace < with > in <impl Middleware for DisableMiddleware>::next
espanso-match/src/rolling/matcher.rs:194:9: replace RollingMatcher<Id>::is_word_separator -> bool with true
espanso-modulo/src/search/config.rs:23:5: replace default_title -> String with "xyzzy".into()
espanso-ui/src/win32/mod.rs:338:9: replace <impl From<RawUIEvent> for Option<UIEvent>>::from -> Option<UIEvent> with Some(Default::default())
espanso/src/main.rs:485:9: delete match arm
espanso/src/cli/modulo/welcome.rs:26:5: replace welcome_main -> i32 with 0
espanso/src/cli/launcher/mod.rs:140:9: replace || with && in launcher_main
espanso-config/src/config/resolve.rs:309:9: replace <impl Config for ResolvedConfig>::emulate_alt_codes -> bool with true
espanso/src/cli/worker/engine/caches/app_info_provider.rs:48:34: replace < with > in <impl AppInfoProvider for CachedAppInfoProvider<'_>>::get_info
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:483:9: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:262:9: replace <impl SeatHandler for SimpleWindow>::new_capability with ()
espanso-detect/src/win32/mod.rs:196:33: replace == with != in <impl Source for Win32Source>::eventloop::callback
espanso-detect/src/hotkey/keys.rs:264:13: delete match arm
espanso-detect/src/layout/mod.rs:35:5: replace get_active_layout -> Option<String> with Some("xyzzy".into())
espanso-detect/src/hotkey/keys.rs:228:13: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:585:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:139:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:231:9: delete match arm
espanso/src/gui/modulo/manager.rs:108:44: delete ! in ModuloManager::invoke
espanso-engine/src/process/middleware/cursor_hint.rs:64:5: replace process_cursor_hint -> (String, Option<usize>) with ("xyzzy".into(), Some(1))
espanso-engine/src/process/middleware/action.rs:101:13: delete match arm
espanso-detect/src/evdev/mod.rs:211:72: delete - in <impl Source for EVDEVSource>::eventloop
espanso-detect/src/evdev/mod.rs:294:9: replace <impl From<RawInputEvent> for Option<InputEvent>>::from -> Option<InputEvent> with None
espanso/src/path/mod.rs:232:5: replace get_portable_runtime_path -> Option<PathBuf> with Some(Default::default())
espanso-clipboard/src/x11/native/mod.rs:57:26: replace > with == in <impl Clipboard for X11NativeClipboard>::set_text
espanso-detect/src/hotkey/keys.rs:284:13: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:527:9: delete match arm
espanso/src/cli/worker/engine/keyboard_layout_util.rs:25:5: replace generate_rmlvo_config -> Option<RMLVOConfig> with None
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:455:9: delete match arm
espanso-detect/src/hotkey/keys.rs:295:13: delete match arm
espanso-render/src/extension/date.rs:300:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:621:9: delete match arm
espanso-detect/src/evdev/mod.rs:388:9: delete match arm
espanso/src/patch/config_store.rs:85:9: replace <impl ConfigStore for PatchedConfigStore>::configs -> Vec<Arc<dyn Config>> with vec![]
espanso-inject/src/x11/default/mod.rs:246:9: replace X11DefaultInjector::find_deadkeys -> Result<Vec<Option<KeyPair>>> with Ok(vec![None])
espanso-detect/src/hotkey/keys.rs:267:13: delete match arm
espanso-mac-utils/src/lib.rs:45:5: replace get_secure_input_application -> Option<(String, String)> with Some(("xyzzy".into(), String::new()))
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:81:46: replace == with != in <impl Middleware for AltCodeSynthesizerMiddleware<'_>>::next
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:638:9: delete match arm
espanso/src/cli/worker/engine/funnel/modifier.rs:139:9: replace ModifierStatus::release with ()
espanso-detect/src/x11/mod.rs:407:9: delete match arm
espanso-render/src/extension/date.rs:205:9: delete match arm
espanso-detect/src/win32/mod.rs:434:9: delete match arm
espanso-render/src/extension/date.rs:114:9: delete match arm
espanso-modulo/src/form/config.rs:161:5: replace default_type -> String with "xyzzy".into()
espanso-engine/src/process/middleware/disable.rs:58:9: replace <impl Middleware for DisableMiddleware>::name -> &'static str with "xyzzy"
espanso-detect/src/hotkey/keys.rs:269:13: delete match arm
espanso-render/src/extension/date.rs:139:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:365:9: delete match arm
espanso-detect/src/mac/mod.rs:455:9: delete match arm
espanso-detect/src/hotkey/keys.rs:278:13: delete match arm
espanso-detect/src/evdev/device.rs:101:9: replace Device::read -> Result<Vec<RawInputEvent>> with Ok(vec![Default::default()])
espanso/src/cli/worker/engine/process/middleware/match_select.rs:55:9: replace <impl MatchSelector for MatchSelectorAdapter<'_>>::select -> Option<i32> with Some(1)
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:555:9: delete match arm
espanso-detect/src/x11/mod.rs:167:17: delete match arm
espanso-clipboard/src/x11/native/mod.rs:43:9: replace <impl Clipboard for X11NativeClipboard>::get_text -> Option<String> with None
espanso-engine/src/dispatch/executor/key_inject.rs:43:9: replace <impl Executor for KeyInjectExecutor<'_>>::execute -> bool with false
espanso-detect/src/evdev/sync/wayland.rs:262:23: replace == with != in <impl SeatHandler for SimpleWindow>::new_capability
espanso/src/cli/daemon/mod.rs:302:27: replace < with > in restart_worker
espanso/src/cli/worker/match_cache.rs:49:9: replace MatchCache<'a>::ids -> Vec<i32> with vec![1]
espanso-render/src/extension/date.rs:209:9: delete match arm
espanso/src/cli/daemon/watcher.rs:138:21: replace || with && in is_file_hidden
espanso/src/cli/package/update.rs:66:40: replace == with != in update_package
espanso-detect/src/evdev/sync/wayland.rs:314:37: replace == with != in <impl KeyboardHandler for SimpleWindow>::leave
espanso/src/main.rs:608:42: replace == with != in main
espanso-render/src/extension/date.rs:126:9: delete match arm
espanso/src/cli/worker/daemon_monitor.rs:43:5: replace daemon_monitor_main with ()
espanso-render/src/extension/date.rs:234:9: delete match arm
espanso/src/cli/worker/config.rs:197:9: replace <impl espanso_engine::process::EnabledStatusProvider for ConfigManager<'_>>::is_config_enabled -> bool with false
espanso/src/cli/worker/engine/caches/app_info_provider.rs:48:34: replace < with == in <impl AppInfoProvider for CachedAppInfoProvider<'_>>::get_info
espanso/src/cli/service/mod.rs:181:5: replace status_main -> i32 with 0
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:501:9: delete match arm
espanso/src/cli/modulo/search.rs:26:5: replace search_main -> i32 with 0
espanso-detect/src/win32/mod.rs:420:9: delete match arm
espanso-detect/src/hotkey/keys.rs:224:13: delete match arm
espanso-inject/src/x11/default/mod.rs:548:9: replace <impl Injector for X11DefaultInjector>::send_key_combination -> Result<()> with Ok(())
espanso-detect/src/hotkey/keys.rs:271:13: delete match arm
espanso-config/src/config/resolve.rs:343:9: replace <impl Config for ResolvedConfig>::win32_keyboard_layout_cache_interval -> i64 with 0
espanso-detect/src/win32/mod.rs:388:9: delete match arm
espanso/src/cli/worker/engine/funnel/modifier.rs:126:9: replace ModifierStatus::is_pressed -> bool with false
espanso-config/src/matches/mod.rs:55:9: replace Match::description -> &str with ""
espanso-detect/src/evdev/mod.rs:344:9: delete match arm
espanso-render/src/extension/date.rs:115:9: delete match arm
espanso/src/cli/worker/engine/dispatch/executor/text_ui.rs:43:9: replace <impl TextUIHandler for TextUIHandlerAdapter<'_>>::show_logs -> anyhow::Result<()> with Ok(())
espanso/src/cli/modulo/textview.rs:30:30: replace == with != in textview_main
espanso/src/cli/worker/engine/process/middleware/render/extension/form.rs:58:52: replace match guard with true
espanso-detect/src/lib.rs:117:5: replace get_source -> Result<Box<dyn Source>> with Ok(Box::new(Default::default()))
espanso-render/src/extension/date.rs:316:9: delete match arm
espanso-config/src/config/resolve.rs:353:9: replace <impl Config for ResolvedConfig>::x11_use_xdotool_backend -> bool with true
espanso-config/src/config/resolve.rs:325:9: replace <impl Config for ResolvedConfig>::max_form_height -> usize with 1
espanso/src/cli/service/macos.rs:145:5: replace start_service -> Result<()> with Ok(())
espanso-inject/src/keys.rs:286:13: delete match arm
espanso-config/src/config/resolve.rs:256:9: replace <impl Config for ResolvedConfig>::backspace_limit -> usize with 1
espanso-inject/src/win32/mod.rs:96:26: replace == with != in <impl Injector for Win32Injector>::send_key_combination
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:575:9: delete match arm
espanso-clipboard/src/cocoa/mod.rs:65:26: replace > with == in <impl Clipboard for CocoaClipboard>::set_text
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:576:9: delete match arm
espanso-info/src/x11/mod.rs:79:86: replace > with == in X11AppInfoProvider::get_title
espanso-inject/src/evdev/state.rs:74:9: replace State::get_sym -> Option<u32> with Some(1)
espanso/src/cli/daemon/watcher.rs:132:5: replace is_file_hidden -> bool with true
espanso/src/cli/modulo/troubleshoot.rs:32:74: delete ! in troubleshoot_main
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:477:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:167:9: delete match arm
espanso-mac-utils/src/lib.rs:91:51: replace > with < in check_accessibility
espanso-detect/src/win32/mod.rs:255:15: replace |= with ^= in convert_hotkey_to_raw
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:545:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:319:9: delete match arm
espanso-info/src/win32/mod.rs:49:70: replace - with / in WinAppInfoProvider::get_exec
espanso-config/src/matches/mod.rs:71:9: replace Match::search_terms -> Vec<&str> with vec!["xyzzy"]
espanso-detect/src/evdev/keymap.rs:82:9: replace Keymap::generate_names -> xkb_rule_names with Default::default()
espanso-inject/src/x11/default/mod.rs:289:36: delete ! in X11DefaultInjector::find_deadkeys
espanso-detect/src/x11/mod.rs:396:9: delete match arm
espanso-detect/src/mac/mod.rs:468:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:259:9: delete match arm
espanso-detect/src/win32/mod.rs:410:9: delete match arm
espanso-mac-utils/src/lib.rs:115:5: replace start_headless_eventloop with ()
espanso/src/cli/service/mod.rs:141:25: replace < with > in start_main
espanso/src/cli/service/linux.rs:182:5: replace start_service -> Result<()> with Ok(())
espanso-clipboard/src/x11/mod.rs:51:9: replace <impl Clipboard for X11Clipboard>::set_text -> anyhow::Result<()> with Ok(())
espanso-detect/src/win32/mod.rs:249:15: replace |= with ^= in convert_hotkey_to_raw
espanso/src/cli/worker/match_cache.rs:49:9: replace MatchCache<'a>::ids -> Vec<i32> with vec![0]
espanso-inject/src/keys.rs:291:13: delete match arm
espanso-render/src/extension/exec_util.rs:30:5: replace determine_path_env_variable_override -> Option<String> with None
espanso-ui/src/win32/mod.rs:249:19: replace != with == in <impl Drop for Win32EventLoop>::drop
espanso/src/cli/worker/ui/notification.rs:34:9: replace NotificationManager<'a>::notify with ()
espanso-inject/src/win32/mod.rs:76:26: replace == with != in <impl Injector for Win32Injector>::send_keys
espanso/src/cli/util.rs:77:5: replace is_subject_to_app_translocation_on_macos -> bool with true
espanso-detect/src/evdev/hotkey.rs:76:9: replace HotKeyFilter::process_event -> Option<i32> with Some(-1)
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:65:9: delete match arm
espanso-detect/src/evdev/mod.rs:404:9: delete match arm
espanso-engine/src/process/middleware/notification.rs:42:9: replace <impl Middleware for NotificationMiddleware<'_>>::name -> &'static str with ""
espanso-inject/src/evdev/mod.rs:174:36: replace - with / in EVDEVInjector::generate_maps
espanso/src/cli/service/mod.rs:181:5: replace status_main -> i32 with -1
espanso-render/src/extension/date.rs:351:9: delete match arm
espanso-mac-utils/src/lib.rs:29:5: replace get_secure_input_pid -> Option<i64> with Some(0)
espanso/src/cli/worker/daemon_monitor.rs:32:5: replace initialize_and_spawn -> Result<()> with Ok(())
espanso-engine/src/process/middleware/matcher.rs:222:9: delete match arm
espanso-ui/src/mac/mod.rs:151:13: replace <impl UIEventLoop for MacEventLoop>::run::callback with ()
espanso-engine/src/process/middleware/markdown.rs:36:9: replace <impl Middleware for MarkdownMiddleware>::name -> &'static str with ""
espanso-engine/src/process/middleware/undo.rs:71:31: replace == with != in <impl Middleware for UndoMiddleware<'_>>::next
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:268:9: delete match arm
espanso/src/path/mod.rs:299:5: replace get_default_packages_dir -> Option<PathBuf> with Some(Default::default())
espanso-detect/src/layout/wayland.rs:29:5: replace get_compositor_name -> String with "xyzzy".into()
espanso/src/cli/modulo/mod.rs:34:5: replace new -> CliModule with Default::default()
espanso/src/cli/worker/engine/process/middleware/render/extension/form.rs:105:5: replace extract_values -> Option<Vec<String>> with Some(vec![])
espanso/src/cli/service/win.rs:135:8: delete ! in get_shortcut_target_file
espanso-config/src/matches/mod.rs:111:9: replace MatchCause::search_terms -> Vec<&str> with vec![""]
espanso-inject/src/x11/mod.rs:92:9: replace <impl Injector for X11ProxyInjector>::send_keys -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:529:9: delete match arm
espanso/src/cli/modulo/mod.rs:46:5: replace modulo_main -> i32 with -1
espanso-info/src/lib.rs:50:5: replace get_provider -> Result<Box<dyn AppInfoProvider>> with Ok(Box::new(Default::default()))
espanso-render/src/extension/date.rs:285:9: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:280:47: replace && with || in <impl SeatHandler for SimpleWindow>::remove_capability
espanso-detect/src/x11/mod.rs:368:9: delete match arm
espanso/src/cli/worker/builtin/mod.rs:76:5: replace is_builtin_match -> bool with false
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:458:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:183:9: delete match arm
espanso-detect/src/evdev/mod.rs:363:9: delete match arm
espanso/src/cli/launcher/edition_check.rs:30:28: replace match guard with true
espanso-render/src/extension/date.rs:310:9: delete match arm
espanso-detect/src/mac/mod.rs:160:48: replace && with || in native_callback
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:287:9: delete match arm
espanso-clipboard/src/wayland/fallback/mod.rs:130:36: delete ! in <impl Clipboard for WaylandFallbackClipboard>::set_image
espanso/src/cli/match_cli/list.rs:100:5: replace print_matches_as_json -> Result<()> with Ok(())
espanso-inject/src/x11/default/mod.rs:252:49: replace + with * in X11DefaultInjector::find_deadkeys
espanso-detect/src/evdev/sync/wayland.rs:418:82: replace * with + in SimpleWindow::draw
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:206:34: delete ! in <impl Renderer<'a> for RendererAdapter<'a>>::render
espanso/src/cli/worker/engine/process/middleware/render/extension/form.rs:105:5: replace extract_values -> Option<Vec<String>> with None
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:422:9: delete match arm
espanso-detect/src/evdev/hotkey.rs:136:9: replace HotKeyFilter::convert_hotkey_to_codes -> Option<Vec<KeyCode>> with Some(vec![])
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:485:9: delete match arm
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:71:9: delete match arm
espanso-detect/src/mac/mod.rs:452:9: delete match arm
espanso-render/src/extension/date.rs:380:9: delete match arm
espanso-package/src/util/gitlab.rs:97:5: replace generate_gitlab_download_url -> String with String::new()
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:74:5: replace generate_template_map -> HashMap<i32, Option<Template>> with HashMap::from_iter([(0, Some(Default::default()))])
espanso/src/cli/worker/engine/process/middleware/render/extension/form.rs:70:52: replace match guard with false
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:376:9: delete match arm
espanso-engine/src/process/middleware/open_config.rs:61:39: replace == with != in <impl Middleware for ConfigMiddleware<'_>>::next
espanso-inject/src/evdev/mod.rs:347:9: replace <impl Injector for EVDEVInjector>::send_key_combination -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:289:9: delete match arm
espanso/src/cli/service/linux.rs:94:16: delete ! in unregister
espanso-render/src/extension/date.rs:319:9: delete match arm
espanso-render/src/extension/date.rs:272:9: delete match arm
espanso-inject/src/keys.rs:264:13: delete match arm
espanso-detect/src/win32/mod.rs:433:5: replace raw_to_mouse_button -> Option<MouseButton> with Some(Default::default())
espanso/src/cli/workaround/secure_input.rs:91:70: replace == with != in execute_secure_input_workaround
espanso-detect/src/evdev/sync/wayland.rs:418:77: replace - with / in SimpleWindow::draw
espanso-clipboard/src/wayland/fallback/mod.rs:154:9: replace <impl Clipboard for WaylandFallbackClipboard>::set_html -> anyhow::Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:647:9: delete match arm
espanso/src/cli/worker/match_cache.rs:202:48: replace == with != in <impl espanso_engine::process::MatchResolver for CombinedMatchCache<'_>>::find_matches_from_trigger
espanso-engine/src/process/middleware/matcher.rs:201:17: delete ! in is_event_of_interest
espanso-detect/src/evdev/mod.rs:384:9: delete match arm
espanso-detect/src/mac/mod.rs:437:9: delete match arm
espanso/src/cli/worker/engine/funnel/key_state.rs:117:9: replace KeyStatus::press with ()
espanso-modulo/src/form/config.rs:115:9: replace <impl From<&'a AutoFieldConfig> for FieldConfig>::from -> Self with Default::default()
espanso-info/src/cocoa/mod.rs:64:86: replace > with < in CocoaAppInfoProvider::get_class
espanso/src/preferences/default.rs:74:9: replace <impl Preferences for DefaultPreferences<KVSType>>::should_display_troubleshoot_for_non_fatal_errors -> bool with true
espanso/src/gui/modulo/form.rs:58:9: replace <impl FormUI for ModuloFormUI<'_>>::show -> anyhow::Result<Option<HashMap<String, String>>> with Ok(Some(HashMap::from_iter([(String::new(), "xyzzy".into())])))
espanso-detect/src/x11/mod.rs:430:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:489:9: delete match arm
espanso/src/cli/worker/config.rs:211:9: replace <impl crate::gui::modulo::form::ModuloFormUIOptionProvider for ConfigManager<'_>>::get_max_form_height -> usize with 1
espanso-engine/src/process/middleware/cursor_hint.rs:64:5: replace process_cursor_hint -> (String, Option<usize>) with (String::new(), None)
espanso/src/util.rs:45:5: replace attach_console -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:209:9: delete match arm
espanso/src/cli/worker/engine/funnel/key_state.rs:104:9: replace KeyStatus::is_outdated -> bool with true
espanso-render/src/extension/date.rs:287:9: delete match arm
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:83:5: replace generate_global_vars_map -> HashMap<i32, Variable> with HashMap::from_iter([(1, Default::default())])
espanso-info/src/x11/mod.rs:48:9: replace X11AppInfoProvider::get_exec -> Option<String> with Some("xyzzy".into())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:224:9: delete match arm
espanso/src/cli/launcher/daemon.rs:30:5: replace launch_daemon -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:530:9: delete match arm
espanso-detect/src/win32/mod.rs:246:5: replace convert_hotkey_to_raw -> Option<RawHotKey> with None
espanso-detect/src/mac/mod.rs:171:8: delete ! in native_callback
espanso-config/src/config/resolve.rs:256:9: replace <impl Config for ResolvedConfig>::backspace_limit -> usize with 0
espanso/src/cli/worker/engine/keyboard_layout_util.rs:25:8: delete ! in generate_rmlvo_config
espanso/src/path/mod.rs:336:8: delete ! in is_legacy_runtime_dir
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:626:9: delete match arm
espanso/src/cli/worker/engine/process/middleware/matcher/convert.rs:93:9: replace MatchConverter<'a>::get_regex_matches -> Vec<RegexMatch<i32>> with vec![]
espanso-detect/src/win32/mod.rs:405:9: delete match arm
espanso-render/src/extension/date.rs:357:9: delete match arm
espanso-modulo/src/sys/form/mod.rs:365:5: replace show -> HashMap<String, String> with HashMap::from_iter([("xyzzy".into(), String::new())])
espanso-inject/src/evdev/mod.rs:170:48: replace + with * in EVDEVInjector::generate_maps
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:227:9: delete match arm
espanso-config/src/config/resolve.rs:321:9: replace <impl Config for ResolvedConfig>::max_form_width -> usize with 0
espanso/src/cli/worker/engine/funnel/detect.rs:37:9: replace <impl funnel::Source<'a> for DetectSource>::register -> usize with 0
espanso-inject/src/x11/xdotool/mod.rs:65:46: replace + with - in X11XDOToolInjector::xfake_release_all_keys
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:292:9: delete match arm
espanso-render/src/extension/date.rs:108:9: delete match arm
espanso-detect/src/evdev/device.rs:129:16: replace < with > in Device::read
espanso-render/src/extension/date.rs:290:9: delete match arm
espanso-modulo/src/search/config.rs:23:5: replace default_title -> String with String::new()
espanso-config/src/matches/mod.rs:67:9: replace Match::cause_description -> Option<&str> with Some("xyzzy")
espanso-render/src/extension/date.rs:229:9: delete match arm
espanso-inject/src/keys.rs:306:13: delete match arm
espanso-inject/src/x11/default/mod.rs:337:28: replace != with == in X11DefaultInjector::get_modifier_codes
espanso/src/cli/service/win.rs:31:5: replace register -> Result<()> with Ok(())
espanso-config/src/config/resolve.rs:285:9: replace <impl Config for ResolvedConfig>::search_shortcut -> Option<String> with Some("xyzzy".into())
espanso-clipboard/src/cocoa/mod.rs:77:12: delete ! in <impl Clipboard for CocoaClipboard>::set_image
espanso/src/cli/worker/engine/process/middleware/render/extension/form.rs:52:5: replace convert_fields -> HashMap<String, FormField> with HashMap::new()
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:421:5: replace convert_cp1252_code_to_unicode -> Option<u32> with None
espanso-clipboard/src/x11/mod.rs:43:9: replace <impl Clipboard for X11Clipboard>::get_text -> Option<String> with Some("xyzzy".into())
espanso-detect/src/win32/mod.rs:398:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:257:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:147:9: delete match arm
espanso-detect/src/evdev/hotkey.rs:84:26: replace == with != in HotKeyFilter::process_event
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:105:5: replace convert_buffer_into_char -> Option<String> with Some(String::new())
espanso-inject/src/x11/default/mod.rs:478:9: replace <impl Injector for X11DefaultInjector>::send_string -> Result<()> with Ok(())
espanso-render/src/extension/date.rs:223:9: delete match arm
espanso/src/patch/patches/linux/emacs_x11.rs:26:5: replace patch -> PatchDefinition with Default::default()
espanso-detect/src/x11/mod.rs:424:9: delete match arm
espanso-detect/src/evdev/device.rs:158:18: replace == with != in Device::process_event
espanso-detect/src/evdev/state.rs:35:9: replace State::get_sym -> Option<u32> with Some(0)
espanso-render/src/extension/date.rs:230:9: delete match arm
espanso-engine/src/process/middleware/cursor_hint.rs:36:9: replace <impl Middleware for CursorHintMiddleware>::name -> &'static str with "xyzzy"
espanso-engine/src/process/middleware/context_menu.rs:133:21: delete match arm
espanso/src/cli/worker/config.rs:79:9: replace <impl espanso_engine::process::MatchFilter for ConfigManager<'_>>::filter_active -> Vec<i32> with vec![]
espanso/src/capabilities/linux.rs:24:5: replace can_use_capabilities -> bool with true
espanso-engine/src/process/middleware/action.rs:58:9: replace <impl Middleware for ActionMiddleware<'_>>::name -> &'static str with ""
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:533:9: delete match arm
espanso-detect/src/mac/mod.rs:449:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:324:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:218:9: delete match arm
espanso/src/cli/worker/engine/funnel/modifier.rs:63:9: replace ModifierStateStore::is_any_conflicting_modifier_pressed -> bool with true
espanso-render/src/extension/date.rs:190:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:467:9: delete match arm
espanso/src/cli/worker/engine/dispatch/executor/secure_input.rs:41:9: replace <impl SecureInputManager for SecureInputManagerAdapter>::launch_secure_input_autofix -> anyhow::Result<()> with Ok(())
espanso-render/src/extension/date.rs:130:9: delete match arm
espanso-engine/src/process/middleware/render.rs:62:9: replace <impl Middleware for RenderMiddleware<'_>>::name -> &'static str with "xyzzy"
espanso/src/cli/launcher/mod.rs:142:9: replace || with && in launcher_main
espanso-detect/src/evdev/device.rs:141:9: replace Device::process_event -> Option<RawInputEvent> with Some(Default::default())
espanso-engine/src/process/middleware/open_config.rs:59:32: replace == with != in <impl Middleware for ConfigMiddleware<'_>>::next
espanso/src/path/mod.rs:159:5: replace get_home_espanso_dir -> Option<PathBuf> with Some(Default::default())
espanso-ui/src/win32/mod.rs:199:9: replace <impl UIEventLoop for Win32EventLoop>::run -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:138:5: replace convert_cp437_code_to_unicode -> Option<u32> with None
espanso/src/cli/service/linux.rs:264:5: replace get_service_file_dir -> Result<PathBuf> with Ok(Default::default())
espanso-engine/src/dispatch/default.rs:78:9: replace <impl Dispatcher for DefaultDispatcher<'_>>::dispatch with ()
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:197:9: delete match arm
espanso-clipboard/src/wayland/fallback/mod.rs:130:33: replace || with && in <impl Clipboard for WaylandFallbackClipboard>::set_image
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:62:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:472:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:629:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:635:9: delete match arm
espanso-inject/src/evdev/mod.rs:274:45: replace * with / in <impl Injector for EVDEVInjector>::send_string
espanso-detect/src/win32/mod.rs:382:9: delete match arm
espanso-render/src/extension/date.rs:390:9: delete match arm
espanso-detect/src/win32/mod.rs:282:9: replace <impl From<RawInputEvent> for Option<InputEvent>>::from -> Option<InputEvent> with None
espanso-engine/src/process/middleware/context_menu.rs:188:13: delete match arm
espanso-package/src/util/download.rs:54:5: replace download -> Result<Vec<u8>> with Ok(vec![])
espanso/src/path/macos.rs:28:5: replace is_espanso_in_path -> bool with false
espanso-render/src/extension/date.rs:146:9: delete match arm
espanso-render/src/extension/date.rs:288:9: delete match arm
espanso/src/path/mod.rs:290:5: replace get_legacy_embedded_packages_dir -> Option<PathBuf> with Some(Default::default())
espanso-config/src/config/resolve.rs:220:9: replace <impl Config for ResolvedConfig>::inject_delay -> Option<usize> with None
espanso-detect/src/x11/mod.rs:409:9: delete match arm
espanso-detect/src/hotkey/keys.rs:324:9: replace ShortcutKey::to_code -> Option<u32> with Some(0)
espanso-detect/src/x11/mod.rs:163:17: delete match arm
espanso-detect/src/mac/mod.rs:420:9: delete match arm
espanso-config/src/config/resolve.rs:285:9: replace <impl Config for ResolvedConfig>::search_shortcut -> Option<String> with Some(String::new())
espanso/src/cli/service/stop.rs:37:5: replace terminate_worker -> Result<()> with Ok(())
espanso-render/src/extension/date.rs:301:9: delete match arm
espanso-detect/src/win32/mod.rs:407:9: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:428:34: replace + with - in SimpleWindow::draw
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:456:9: delete match arm
espanso-render/src/renderer/util.rs:51:9: delete match arm
espanso/src/path/win.rs:33:5: replace add_espanso_to_path -> Result<()> with Ok(())
espanso-config/src/config/resolve.rs:349:9: replace <impl Config for ResolvedConfig>::x11_use_xclip_backend -> bool with true
espanso-engine/src/process/middleware/disable.rs:72:44: delete ! in <impl Middleware for DisableMiddleware>::next
espanso/src/patch/patches/linux/generic_terminal_x11.rs:28:50: replace && with || in patch
espanso-info/src/x11/mod.rs:79:86: replace > with < in X11AppInfoProvider::get_title
espanso-detect/src/win32/mod.rs:155:17: delete match arm
espanso-render/src/extension/date.rs:168:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:639:9: delete match arm
espanso-mac-utils/src/lib.rs:122:5: replace exit_headless_eventloop with ()
espanso-render/src/extension/date.rs:265:9: delete match arm
espanso-modulo/src/search/config.rs:27:5: replace default_icon -> Option<String> with Some("xyzzy".into())
espanso-detect/src/x11/mod.rs:369:9: delete match arm
espanso/src/path/macos.rs:105:5: replace remove_espanso_from_path -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:656:9: delete match arm
espanso-render/src/extension/date.rs:112:9: delete match arm
espanso-detect/src/evdev/mod.rs:385:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:427:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:138:5: replace convert_cp437_code_to_unicode -> Option<u32> with Some(1)
espanso-config/src/config/resolve.rs:260:9: replace <impl Config for ResolvedConfig>::apply_patch -> bool with false
espanso-inject/src/keys.rs:256:13: delete match arm
espanso-engine/src/process/middleware/disable.rs:128:5: replace is_toggle_key -> bool with false
espanso-inject/src/x11/xdotool/mod.rs:221:9: replace <impl Injector for X11XDOToolInjector>::send_key_combination -> anyhow::Result<()> with Ok(())
espanso-clipboard/src/win32/mod.rs:60:26: replace > with < in <impl Clipboard for Win32Clipboard>::set_text
espanso-detect/src/hotkey/keys.rs:243:13: delete match arm
espanso/src/cli/worker/engine/mod.rs:322:5: replace grant_linux_capabilities -> bool with true
espanso/src/cli/daemon/mod.rs:220:25: replace < with == in terminate_worker_if_already_running
espanso/src/cli/edit.rs:27:5: replace default_editor -> String with String::new()
espanso-detect/src/evdev/sync/wayland.rs:421:55: replace + with - in SimpleWindow::draw
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:75:9: delete match arm
espanso-detect/src/evdev/state.rs:35:9: replace State::get_sym -> Option<u32> with None
espanso-inject/src/keys.rs:292:13: delete match arm
espanso-clipboard/src/cocoa/mod.rs:106:26: replace > with < in <impl Clipboard for CocoaClipboard>::set_html
espanso/src/cli/workaround/mod.rs:35:5: replace workaround_main -> i32 with 1
espanso-detect/src/evdev/mod.rs:343:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:606:9: delete match arm
espanso-detect/src/evdev/device.rs:97:9: replace Device::get_path -> String with "xyzzy".into()
espanso-info/src/cocoa/mod.rs:79:86: replace > with == in CocoaAppInfoProvider::get_title
espanso-detect/src/evdev/hotkey.rs:55:9: replace HotKeyFilter::initialize with ()
espanso-engine/src/process/middleware/delay_modifiers.rs:51:9: replace <impl Middleware for DelayForModifierReleaseMiddleware<'_>>::name -> &'static str with "xyzzy"
espanso/src/gui/modulo/form.rs:83:28: replace > with < in <impl FormUI for ModuloFormUI<'_>>::show
espanso-render/src/extension/date.rs:189:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:655:9: delete match arm
espanso-engine/src/process/middleware/delay_modifiers.rs:58:57: replace > with == in <impl Middleware for DelayForModifierReleaseMiddleware<'_>>::next
espanso/src/cli/worker/engine/funnel/key_state.rs:66:9: replace KeyStateStore::update_state with ()
espanso/src/patch/patches/linux/tilix_terminal_x11.rs:28:50: replace && with || in patch
espanso/src/cli/modulo/welcome.rs:26:5: replace welcome_main -> i32 with 1
espanso-ui/src/win32/mod.rs:345:13: delete match arm
espanso/src/cli/edit.rs:144:20: delete ! in determine_target_path
espanso-render/src/extension/date.rs:309:9: delete match arm
espanso-render/src/extension/date.rs:256:9: delete match arm
espanso-detect/src/x11/mod.rs:260:5: replace convert_hotkey_to_raw -> Option<RawHotKeyRequest> with None
espanso-clipboard/src/win32/mod.rs:72:36: delete ! in <impl Clipboard for Win32Clipboard>::set_image
espanso-mac-utils/src/lib.rs:96:52: replace > with == in prompt_accessibility
espanso/src/cli/worker/config.rs:207:9: replace <impl crate::gui::modulo::form::ModuloFormUIOptionProvider for ConfigManager<'_>>::get_max_form_width -> usize with 1
espanso-render/src/extension/date.rs:363:9: delete match arm
espanso-render/src/extension/date.rs:364:9: delete match arm
espanso/src/cli/worker/engine/dispatch/executor/clipboard_injector.rs:148:9: replace <impl HtmlInjector for ClipboardInjectorAdapter<'_>>::inject_html -> anyhow::Result<()> with Ok(())
espanso/src/cli/edit.rs:147:24: delete ! in determine_target_path
espanso-ui/src/win32/mod.rs:139:9: replace <impl UIEventLoop for Win32EventLoop>::initialize -> Result<()> with Ok(())
espanso-engine/src/process/middleware/disable.rs:88:13: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:616:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:668:9: delete match arm
espanso-render/src/extension/date.rs:263:9: delete match arm
espanso-clipboard/src/x11/native/mod.rs:69:33: replace || with && in <impl Clipboard for X11NativeClipboard>::set_image
espanso-render/src/extension/shell.rs:160:13: delete match arm
espanso-detect/src/evdev/mod.rs:389:9: delete match arm
espanso/src/cli/launcher/accessibility.rs:22:5: replace is_accessibility_enabled -> bool with false
espanso-detect/src/x11/mod.rs:149:9: replace X11Source::is_compatible -> bool with false
espanso-info/src/cocoa/mod.rs:79:86: replace > with < in CocoaAppInfoProvider::get_title
espanso-render/src/extension/date.rs:201:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:374:9: delete match arm
espanso/src/path/mod.rs:108:58: replace && with || in resolve_paths
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:322:9: delete match arm
espanso/src/cli/daemon/watcher.rs:32:5: replace initialize_and_spawn -> Result<()> with Ok(())
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:91:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:220:9: delete match arm
espanso-detect/src/win32/mod.rs:375:9: delete match arm
espanso-render/src/extension/script.rs:48:9: replace <impl Extension for ScriptExtension>::name -> &'static str with ""
espanso-info/src/win32/mod.rs:48:9: replace WinAppInfoProvider::get_exec -> Option<String> with Some(String::new())
espanso-detect/src/mac/mod.rs:458:9: delete match arm
espanso-clipboard/src/x11/xclip/mod.rs:44:9: replace <impl Clipboard for XClipClipboard>::get_text -> Option<String> with Some("xyzzy".into())
espanso-detect/src/hotkey/keys.rs:287:13: delete match arm
espanso-detect/src/mac/mod.rs:307:19: replace |= with &= in convert_hotkey_to_raw
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:152:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:333:9: delete match arm
espanso-engine/src/process/middleware/hotkey.rs:36:9: replace <impl Middleware for HotKeyMiddleware>::name -> &'static str with "xyzzy"
espanso-engine/src/process/middleware/search.rs:44:9: replace <impl Middleware for SearchMiddleware<'_>>::name -> &'static str with "xyzzy"
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:335:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:452:9: delete match arm
espanso-detect/src/hotkey/keys.rs:258:13: delete match arm
espanso/src/cli/launcher/daemon.rs:52:5: replace spawn_and_wait -> Result<ExitStatus> with Ok(Default::default())
espanso-config/src/config/resolve.rs:224:9: replace <impl Config for ResolvedConfig>::key_delay -> Option<usize> with Some(1)
espanso/src/cli/modulo/search.rs:31:30: replace == with != in search_main
espanso/src/patch/patches/linux/yakuake_terminal_x11.rs:26:5: replace patch -> PatchDefinition with Default::default()
espanso-package/src/package/default.rs:64:9: replace <impl Package for DefaultPackage>::author -> &str with "xyzzy"
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:593:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:77:29: delete match arm
espanso/src/patch/patches/linux/gedit_x11.rs:26:5: replace patch -> PatchDefinition with Default::default()
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:588:9: delete match arm
espanso-detect/src/hotkey/keys.rs:270:13: delete match arm
espanso/src/cli/worker/engine/dispatch/executor/event_injector.rs:48:9: replace <impl TextInjector for EventInjectorAdapter<'_>>::inject_text -> anyhow::Result<()> with Ok(())
espanso/src/cli/package/update.rs:40:46: replace == with != in update_package
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:187:9: delete match arm
espanso-package/src/util/github.rs:96:5: replace generate_github_download_url -> String with "xyzzy".into()
espanso/src/path/linux.rs:29:5: replace add_espanso_to_path -> Result<()> with Ok(())
espanso-mac-utils/src/lib.rs:33:16: replace > with == in get_secure_input_pid
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:517:9: delete match arm
espanso-render/src/extension/date.rs:197:9: delete match arm
espanso-render/src/extension/exec_util.rs:57:5: replace determine_default_macos_shell -> Option<MacShell> with None
espanso-modulo/src/sys/wizard/mod.rs:88:13: delete - in show::enable_accessibility
espanso-inject/src/x11/default/mod.rs:457:42: replace * with / in X11DefaultInjector::xtest_release_all_keys
espanso/src/cli/service/mod.rs:70:5: replace service_main -> i32 with -1
espanso-inject/src/mac/mod.rs:76:9: replace <impl Injector for MacInjector>::send_keys -> Result<()> with Ok(())
espanso-modulo/src/search/algorithm.rs:75:5: replace case_insensitive_keyword -> Vec<usize> with vec![]
espanso/src/cli/launcher/mod.rs:205:5: replace launcher_main -> i32 with -1
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:361:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:213:9: delete match arm
espanso-detect/src/mac/mod.rs:457:9: delete match arm
espanso-mac-utils/src/lib.rs:91:51: replace > with == in check_accessibility
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:70:9: delete match arm
espanso-engine/src/dispatch/executor/secure_input.rs:45:9: replace <impl Executor for SecureInputExecutor<'_>>::execute -> bool with false
espanso/src/cli/worker/engine/mod.rs:302:24: delete ! in initialize_and_spawn
espanso/src/path/mod.rs:159:5: replace get_home_espanso_dir -> Option<PathBuf> with None
espanso-detect/src/hotkey/keys.rs:298:13: delete match arm
espanso-render/src/extension/date.rs:155:9: delete match arm
espanso-info/src/cocoa/mod.rs:48:9: replace CocoaAppInfoProvider::get_exec -> Option<String> with Some("xyzzy".into())
espanso-engine/src/dispatch/executor/context_menu.rs:41:9: replace <impl Executor for ContextMenuExecutor<'_>>::execute -> bool with false
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:610:9: delete match arm
espanso-render/src/extension/date.rs:373:9: delete match arm
espanso-package/src/package/default.rs:60:9: replace <impl Package for DefaultPackage>::version -> &str with ""
espanso-render/src/extension/date.rs:311:9: delete match arm
espanso-detect/src/evdev/hotkey.rs:124:80: replace == with != in HotKeyFilter::process_event
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:93:9: delete match arm
espanso-config/src/matches/group/loader/yaml/mod.rs:187:13: delete match arm
espanso-detect/src/hotkey/keys.rs:234:13: delete match arm
espanso-render/src/extension/date.rs:208:9: delete match arm
espanso-detect/src/evdev/device.rs:118:45: replace / with % in Device::read
espanso-render/src/extension/date.rs:249:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:618:9: delete match arm
espanso-detect/src/win32/mod.rs:395:9: delete match arm
espanso-clipboard/src/cocoa/mod.rs:77:36: delete ! in <impl Clipboard for CocoaClipboard>::set_image
espanso-detect/src/evdev/mod.rs:380:9: delete match arm
espanso/src/preferences/default.rs:62:9: replace <impl Preferences for DefaultPreferences<KVSType>>::set_completed_wizard with ()
espanso-render/src/extension/date.rs:216:9: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:280:23: replace == with != in <impl SeatHandler for SimpleWindow>::remove_capability
espanso/src/cli/launcher/mod.rs:124:9: delete ! in launcher_main
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:143:9: delete match arm
espanso-engine/src/process/middleware/match_select.rs:73:17: delete match arm
espanso-config/src/config/resolve.rs:285:9: replace <impl Config for ResolvedConfig>::search_shortcut -> Option<String> with None
espanso-detect/src/layout/wayland.rs:9:5: replace pid_from_wayland_display_fd -> i32 with 1
espanso-detect/src/evdev/mod.rs:367:9: delete match arm
espanso-detect/src/layout/x11.rs:25:5: replace get_active_layout -> Option<String> with None
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:332:9: delete match arm
espanso-detect/src/x11/mod.rs:374:9: delete match arm
espanso-inject/src/win32/raw_keys.rs:23:5: replace convert_key_to_vkey -> Option<i32> with Some(-1)
espanso-modulo/src/sys/wizard/mod.rs:63:13: delete - in show::auto_start
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:257:5: replace extract_uppercasing_style -> Option<UpperCasingStyle> with None
espanso-render/src/extension/date.rs:360:9: delete match arm
espanso-render/src/extension/date.rs:398:9: delete match arm
espanso/src/path/macos.rs:67:44: replace match guard with true
espanso/src/logging/mod.rs:75:9: replace <impl Write for FileProxy>::write -> std::io::Result<usize> with Ok(0)
espanso-render/src/extension/shell.rs:155:9: replace Shell::from_string -> Option<Shell> with Some(Default::default())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:358:9: delete match arm
espanso/src/cli/daemon/mod.rs:220:25: replace < with > in terminate_worker_if_already_running
espanso-detect/src/win32/mod.rs:360:9: delete match arm
espanso-info/src/x11/mod.rs:64:86: replace > with == in X11AppInfoProvider::get_class
espanso-render/src/extension/form.rs:51:9: replace <impl Extension for FormExtension<'_>>::name -> &'static str with ""
espanso-engine/src/process/middleware/context_menu.rs:156:21: delete match arm
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:88:9: delete match arm
espanso/src/cli/daemon/troubleshoot.rs:60:9: replace TroubleshootGuard::try_wait -> Result<bool> with Ok(false)
espanso-engine/src/process/middleware/disable.rs:128:5: replace is_toggle_key -> bool with true
espanso-detect/src/mac/mod.rs:152:82: replace == with != in native_callback
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:634:9: delete match arm
espanso-detect/src/win32/mod.rs:221:23: replace <= with > in <impl Source for Win32Source>::eventloop
espanso-ui/src/mac/mod.rs:116:66: replace - with + in <impl UIEventLoop for MacEventLoop>::initialize
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:186:9: delete match arm
espanso-detect/src/evdev/mod.rs:341:5: replace key_sym_to_key -> (Key, Option<Variant>) with (Default::default(), Some(Default::default()))
espanso-detect/src/mac/mod.rs:310:24: replace << with >> in convert_hotkey_to_raw
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:498:9: delete match arm
espanso-detect/src/win32/mod.rs:373:9: delete match arm
espanso-render/src/extension/shell.rs:157:13: delete match arm
espanso-render/src/extension/date.rs:176:9: delete match arm
espanso-render/src/extension/date.rs:340:9: delete match arm
espanso/src/cli/worker/config.rs:203:9: replace <impl crate::gui::modulo::form::ModuloFormUIOptionProvider for ConfigManager<'_>>::get_post_form_delay -> usize with 1
espanso-render/src/extension/date.rs:160:9: delete match arm
espanso-inject/src/keys.rs:276:13: delete match arm
espanso-engine/src/process/middleware/notification.rs:47:13: delete match arm
espanso-info/src/x11/mod.rs:79:71: replace - with / in X11AppInfoProvider::get_title
espanso/src/path/mod.rs:312:5: replace is_portable_mode -> bool with true
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:393:9: delete match arm
espanso-engine/src/process/middleware/undo.rs:49:9: replace <impl Middleware for UndoMiddleware<'_>>::name -> &'static str with ""
espanso-detect/src/hotkey/keys.rs:415:9: replace ShortcutKey::to_code -> Option<u32> with Some(0)
espanso/src/cli/launcher/mod.rs:51:5: replace launcher_main -> i32 with 1
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:383:9: delete match arm
espanso-config/src/config/resolve.rs:329:9: replace <impl Config for ResolvedConfig>::post_search_delay -> usize with 0
espanso-detect/src/evdev/hotkey.rs:136:9: replace HotKeyFilter::convert_hotkey_to_codes -> Option<Vec<KeyCode>> with Some(vec![Default::default()])
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:492:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:253:9: delete match arm
espanso-render/src/extension/date.rs:291:9: delete match arm
espanso-config/src/config/resolve.rs:212:9: replace <impl Config for ResolvedConfig>::paste_shortcut -> Option<String> with Some("xyzzy".into())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:521:9: delete match arm
espanso-detect/src/mac/mod.rs:410:9: delete match arm
espanso-detect/src/mac/mod.rs:421:9: delete match arm
espanso-engine/src/process/middleware/context_menu.rs:54:9: replace <impl Middleware for ContextMenuMiddleware>::name -> &'static str with ""
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:272:9: delete match arm
espanso-clipboard/src/x11/native/mod.rs:69:12: delete ! in <impl Clipboard for X11NativeClipboard>::set_image
espanso-render/src/extension/date.rs:283:9: delete match arm
espanso-inject/src/evdev/mod.rs:228:9: replace EVDEVInjector::wait_until_key_is_released -> Result<()> with Ok(())
espanso-modulo/src/sys/wizard/mod.rs:36:5: replace show -> bool with false
espanso-detect/src/hotkey/keys.rs:254:13: delete match arm
espanso-render/src/extension/clipboard.rs:40:9: replace <impl Extension for ClipboardExtension<'_>>::name -> &'static str with ""
espanso-inject/src/keys.rs:249:13: delete match arm
espanso/src/path/mod.rs:281:5: replace get_legacy_packages_dir -> Option<PathBuf> with Some(Default::default())
espanso-detect/src/evdev/sync/wayland.rs:419:41: replace * with + in SimpleWindow::draw
espanso-inject/src/x11/default/mod.rs:362:35: replace |= with &= in X11DefaultInjector::render_key_combination
espanso/src/cli/edit.rs:31:5: replace default_editor -> String with String::new()
espanso-ui/src/win32/mod.rs:281:9: replace <impl UIRemote for Win32Remote>::update_tray_icon with ()
espanso-detect/src/x11/mod.rs:401:9: delete match arm
espanso-detect/src/layout/wayland.rs:22:5: replace process_name_from_pid -> String with "xyzzy".into()
espanso/src/cli/service/macos.rs:137:5: replace is_registered -> bool with true
espanso-inject/src/x11/default/mod.rs:274:27: replace == with != in X11DefaultInjector::find_deadkeys
espanso/src/cli/worker/engine/process/middleware/multiplex.rs:54:9: replace <impl Multiplexer for MultiplexAdapter<'_>>::convert -> Option<EventType> with None
espanso/src/config.rs:33:5: replace populate_default_config -> Result<()> with Ok(())
espanso/src/cli/worker/engine/mod.rs:296:31: replace match guard with true
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:535:9: delete match arm
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:74:5: replace generate_template_map -> HashMap<i32, Option<Template>> with HashMap::new()
espanso-inject/src/keys.rs:309:13: delete match arm
espanso/src/cli/util.rs:62:35: replace == with != in prevent_running_as_root_on_macos
espanso/src/logging/mod.rs:75:9: replace <impl Write for FileProxy>::write -> std::io::Result<usize> with Ok(1)
espanso-engine/src/process/middleware/matcher.rs:210:9: delete match arm
espanso-modulo/src/sys/wizard/mod.rs:48:9: delete - in show::is_legacy_version_running
espanso/src/cli/daemon/watcher.rs:155:5: replace has_hidden_attribute -> bool with true
espanso-detect/src/hotkey/keys.rs:273:13: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:310:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:51:9: replace <impl Middleware for AltCodeSynthesizerMiddleware<'_>>::name -> &'static str with ""
espanso/src/path/mod.rs:232:5: replace get_portable_runtime_path -> Option<PathBuf> with None
espanso/src/main.rs:513:73: replace == with != in main
espanso-engine/src/dispatch/executor/context_menu.rs:41:9: replace <impl Executor for ContextMenuExecutor<'_>>::execute -> bool with true
espanso/src/path/mod.rs:336:5: replace is_legacy_runtime_dir -> bool with true
espanso-detect/src/win32/mod.rs:295:21: delete match arm
espanso-detect/src/evdev/device.rs:145:29: replace == with != in Device::process_event
espanso-info/src/cocoa/mod.rs:95:80: replace - with + in CocoaAppInfoProvider::get_title_fallback
espanso/src/preferences/default.rs:58:9: replace <impl Preferences for DefaultPreferences<KVSType>>::has_completed_wizard -> bool with true
espanso/src/patch/patches/linux/simple_terminal_2_x11.rs:28:50: replace && with || in patch
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:105:5: replace convert_buffer_into_char -> Option<String> with Some("xyzzy".into())
espanso-detect/src/mac/mod.rs:441:9: delete match arm
espanso-ui/src/linux/mod.rs:67:9: replace <impl UIRemote for LinuxRemote>::show_notification with ()
espanso-render/src/extension/date.rs:358:9: delete match arm
espanso-detect/src/mac/mod.rs:454:9: delete match arm
espanso/src/patch/config_store.rs:72:12: delete ! in <impl ConfigStore for PatchedConfigStore>::active
espanso-detect/src/x11/mod.rs:308:78: replace + with - in convert_raw_input_event_to_input_event
espanso/src/cli/worker/match_cache.rs:169:9: replace <impl espanso_engine::process::MatchProvider for CombinedMatchCache<'_>>::get_all_matches_ids -> Vec<i32> with vec![]
espanso/src/cli/launcher/edition_check.rs:47:8: delete ! in get_session_type
espanso-ui/src/win32/mod.rs:325:9: replace <impl UIRemote for Win32Remote>::exit with ()
espanso/src/cli/service/win.rs:68:37: replace != with == in is_registered
espanso-detect/src/win32/mod.rs:397:9: delete match arm
espanso-config/src/config/resolve.rs:220:9: replace <impl Config for ResolvedConfig>::inject_delay -> Option<usize> with Some(1)
espanso-render/src/extension/date.rs:200:9: delete match arm
espanso/src/patch/patches/linux/libreoffice_writer_x11.rs:28:53: delete ! in patch
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:389:9: delete match arm
espanso/src/cli/env_path.rs:37:5: replace env_path_main -> i32 with 0
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:148:9: delete match arm
espanso-render/src/extension/exec_util.rs:102:8: delete ! in launch_command_and_get_output
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:165:9: delete match arm
espanso-clipboard/src/cocoa/mod.rs:63:9: replace <impl Clipboard for CocoaClipboard>::set_text -> anyhow::Result<()> with Ok(())
espanso-inject/src/x11/default/mod.rs:289:33: replace && with || in X11DefaultInjector::find_deadkeys
espanso-detect/src/mac/mod.rs:442:9: delete match arm
espanso-detect/src/evdev/device.rs:114:20: replace <= with > in Device::read
espanso-detect/src/x11/mod.rs:297:9: delete match arm
espanso-package/src/provider/git.rs:70:9: replace <impl PackageProvider for GitPackageProvider>::name -> String with String::new()
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:550:9: delete match arm
espanso-engine/src/process/middleware/action.rs:73:21: delete match arm
espanso-inject/src/x11/mod.rs:87:9: replace <impl Injector for X11ProxyInjector>::send_string -> Result<()> with Ok(())
espanso/src/cli/worker/engine/funnel/modifier.rs:84:30: replace == with != in ModifierStateStore::update_state
espanso-engine/src/process/middleware/action.rs:118:13: delete match arm
espanso-render/src/extension/date.rs:109:9: delete match arm
espanso/src/path/mod.rs:308:5: replace get_default_packages_path -> PathBuf with Default::default()
espanso-inject/src/evdev/state.rs:85:9: replace <impl Drop for State>::drop with ()
espanso/src/cli/daemon/watcher.rs:52:5: replace watcher_main with ()
espanso-modulo/src/search/config.rs:35:5: replace default_algorithm -> String with String::new()
espanso-detect/src/evdev/hotkey.rs:100:54: replace > with == in HotKeyFilter::process_event
espanso-render/src/extension/date.rs:164:9: delete match arm
espanso/src/cli/worker/engine/dispatch/executor/context_menu.rs:39:9: replace <impl ContextMenuHandler for ContextMenuHandlerAdapter<'_>>::show_context_menu -> anyhow::Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:234:9: delete match arm
espanso-engine/src/process/middleware/cause.rs:35:9: replace <impl Middleware for CauseCompensateMiddleware>::name -> &'static str with ""
espanso/src/cli/env_path.rs:37:5: replace env_path_main -> i32 with 1
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:653:9: delete match arm
espanso/src/cli/workaround/secure_input.rs:130:5: replace get_running_apps -> Result<HashSet<String>> with Ok(HashSet::from_iter([String::new()]))
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:623:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:329:9: delete match arm
espanso-clipboard/src/x11/xclip/mod.rs:65:9: replace <impl Clipboard for XClipClipboard>::set_text -> anyhow::Result<()> with Ok(())
espanso-inject/src/keys.rs:315:13: delete match arm
espanso-detect/src/win32/mod.rs:356:5: replace key_code_to_key -> (Key, Option<Variant>) with (Default::default(), Some(Default::default()))
espanso/src/main.rs:544:16: delete ! in main
espanso/src/cli/service/mod.rs:181:5: replace status_main -> i32 with 1
espanso-package/src/util/download.rs:89:20: delete ! in extract_zip
espanso-info/src/x11/mod.rs:64:71: replace - with / in X11AppInfoProvider::get_class
espanso/src/path/mod.rs:223:5: replace get_portable_runtime_dir -> Option<PathBuf> with None
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:595:9: delete match arm
espanso-package/src/provider/hub.rs:102:16: delete ! in EspansoHubPackageProvider::get_index
espanso-detect/src/evdev/device.rs:118:45: replace / with * in Device::read
espanso-modulo/src/form/config.rs:173:5: replace default_values -> Vec<String> with vec!["xyzzy".into()]
espanso-detect/src/win32/mod.rs:249:15: replace |= with &= in convert_hotkey_to_raw
espanso-inject/src/x11/xdotool/mod.rs:76:9: replace X11XDOToolInjector::get_focused_window -> Window with Default::default()
espanso-detect/src/win32/mod.rs:380:9: delete match arm
espanso/src/preferences/default.rs:50:9: replace DefaultPreferences<KVSType>::set with ()
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:74:5: replace generate_template_map -> HashMap<i32, Option<Template>> with HashMap::from_iter([(1, Some(Default::default()))])
espanso-render/src/extension/date.rs:136:9: delete match arm
espanso-package/src/provider/hub.rs:140:9: replace EspansoHubPackageProvider::save_index_to_cache -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:105:5: replace convert_buffer_into_char -> Option<String> with None
espanso-inject/src/x11/xdotool/mod.rs:97:35: replace * with + in X11XDOToolInjector::xfake_send_string
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:446:9: delete match arm
espanso/src/cli/worker/engine/funnel/key_state.rs:106:44: replace > with < in KeyStatus::is_outdated
espanso-engine/src/process/middleware/icon_status.rs:56:13: delete match arm
espanso-render/src/extension/date.rs:359:9: delete match arm
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:83:5: replace generate_global_vars_map -> HashMap<i32, Variable> with HashMap::new()
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:100:9: delete match arm
espanso/src/cli/worker/engine/dispatch/executor/clipboard_injector.rs:135:9: replace <impl TextInjector for ClipboardInjectorAdapter<'_>>::inject_text -> anyhow::Result<()> with Ok(())
espanso-detect/src/evdev/sync/wayland.rs:421:48: replace << with >> in SimpleWindow::draw
espanso/src/cli/match_cli/mod.rs:26:5: replace new -> CliModule with Default::default()
espanso-render/src/extension/date.rs:232:9: delete match arm
espanso-package/src/util/download.rs:54:5: replace download -> Result<Vec<u8>> with Ok(vec![1])
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:297:9: delete match arm
espanso-inject/src/win32/mod.rs:49:9: replace Win32Injector::convert_to_vk_array -> Result<Vec<i32>> with Ok(vec![])
espanso/src/path/mod.rs:108:28: replace && with || in resolve_paths
espanso-render/src/extension/date.rs:174:9: delete match arm
espanso-modulo/src/form/config.rs:165:5: replace default_default -> Option<String> with Some(String::new())
espanso-inject/src/keys.rs:303:13: delete match arm
espanso-detect/src/win32/mod.rs:290:13: delete match arm
espanso/src/cli/package/list.rs:28:5: replace list_packages -> Result<()> with Ok(())
espanso-clipboard/src/x11/native/mod.rs:69:36: delete ! in <impl Clipboard for X11NativeClipboard>::set_image
espanso-render/src/extension/choice.rs:84:21: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:488:9: delete match arm
espanso-engine/src/process/middleware/context_menu.rs:196:13: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:360:9: delete match arm
espanso/src/cli/launcher/mod.rs:141:9: replace || with && in launcher_main
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:500:9: delete match arm
espanso/src/cli/worker/engine/dispatch/executor/event_injector.rs:44:9: replace <impl TextInjector for EventInjectorAdapter<'_>>::name -> &'static str with "xyzzy"
espanso-render/src/extension/date.rs:222:9: delete match arm
espanso-inject/src/evdev/mod.rs:229:42: replace + with - in EVDEVInjector::wait_until_key_is_released
espanso-render/src/extension/date.rs:286:9: delete match arm
espanso-engine/src/process/middleware/delay_modifiers.rs:75:5: replace is_injection_event -> bool with true
espanso-render/src/extension/date.rs:147:9: delete match arm
espanso-inject/src/keys.rs:267:13: delete match arm
espanso-clipboard/src/cocoa/mod.rs:44:9: replace <impl Clipboard for CocoaClipboard>::get_text -> Option<String> with Some(String::new())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:543:9: delete match arm
espanso-ui/src/mac/mod.rs:185:9: replace <impl UIRemote for MacRemote>::update_tray_icon with ()
espanso-engine/src/process/middleware/disable.rs:117:16: delete ! in <impl Middleware for DisableMiddleware>::next
espanso-info/src/lib.rs:70:5: replace get_provider -> Result<Box<dyn AppInfoProvider>> with Ok(Box::new(Default::default()))
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:565:9: delete match arm
espanso-render/src/extension/date.rs:207:9: delete match arm
espanso-engine/src/process/middleware/context_menu.rs:54:9: replace <impl Middleware for ContextMenuMiddleware>::name -> &'static str with "xyzzy"
espanso-render/src/extension/date.rs:202:9: delete match arm
espanso-inject/src/keys.rs:252:13: delete match arm
espanso-inject/src/keys.rs:316:13: delete match arm
espanso-detect/src/evdev/mod.rs:379:9: delete match arm
espanso-engine/src/process/middleware/search.rs:44:9: replace <impl Middleware for SearchMiddleware<'_>>::name -> &'static str with ""
espanso-render/src/extension/date.rs:397:9: delete match arm
espanso/src/cli/edit.rs:139:5: replace determine_target_path -> PathBuf with Default::default()
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:480:9: delete match arm
espanso-detect/src/mac/mod.rs:448:9: delete match arm
espanso/src/cli/package/uninstall.rs:27:5: replace uninstall_package -> Result<()> with Ok(())
espanso-config/src/config/mod.rs:203:9: replace Config::pretty_dump -> String with String::new()
espanso-render/src/extension/date.rs:393:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:188:9: delete match arm
espanso/src/cli/daemon/troubleshoot.rs:56:9: replace TroubleshootGuard::wait -> Result<()> with Ok(())
espanso/src/gui/modulo/manager.rs:77:9: replace ModuloManager::invoke -> Result<String> with Ok("xyzzy".into())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:542:9: delete match arm
espanso/src/cli/worker/engine/process/middleware/render/extension/clipboard.rs:46:9: replace <impl ClipboardProvider for ClipboardAdapter<'_>>::get_text -> Option<String> with Some("xyzzy".into())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:449:9: delete match arm
espanso-render/src/extension/script.rs:48:9: replace <impl Extension for ScriptExtension>::name -> &'static str with "xyzzy"
espanso-engine/src/process/middleware/cursor_hint.rs:64:5: replace process_cursor_hint -> (String, Option<usize>) with ("xyzzy".into(), None)
espanso-detect/src/win32/mod.rs:202:58: replace == with != in <impl Source for Win32Source>::eventloop::callback
espanso-package/src/provider/hub.rs:105:40: replace >= with < in EspansoHubPackageProvider::get_index
espanso/src/cli/worker/match_cache.rs:49:9: replace MatchCache<'a>::ids -> Vec<i32> with vec![]
espanso-clipboard/src/x11/xclip/mod.rs:44:12: delete ! in <impl Clipboard for XClipClipboard>::get_text
espanso-clipboard/src/wayland/fallback/mod.rs:130:9: replace <impl Clipboard for WaylandFallbackClipboard>::set_image -> anyhow::Result<()> with Ok(())
espanso-detect/src/mac/mod.rs:415:9: delete match arm
espanso-detect/src/evdev/mod.rs:175:9: replace <impl Source for EVDEVSource>::eventloop -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:200:9: delete match arm
espanso-detect/src/mac/mod.rs:445:9: delete match arm
espanso/src/lock.rs:59:9: replace <impl Drop for Lock>::drop with ()
espanso/src/patch/patches/linux/util.rs:21:5: replace is_wayland -> bool with true
espanso-detect/src/x11/mod.rs:378:9: delete match arm
espanso-modulo/src/form/config.rs:139:13: delete match arm
espanso/src/cli/worker/builtin/mod.rs:86:27: replace + with * in generate_next_builtin_id
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:650:9: delete match arm
espanso-detect/src/evdev/device.rs:155:58: replace + with * in Device::process_event
espanso-render/src/extension/date.rs:156:9: delete match arm
espanso-clipboard/src/cocoa/mod.rs:77:33: replace || with && in <impl Clipboard for CocoaClipboard>::set_image
espanso/src/preferences/default.rs:58:9: replace <impl Preferences for DefaultPreferences<KVSType>>::has_completed_wizard -> bool with false
espanso/src/cli/launcher/edition_check.rs:29:24: replace match guard with true
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:74:5: replace generate_template_map -> HashMap<i32, Option<Template>> with HashMap::from_iter([(-1, Some(Default::default()))])
espanso-info/src/cocoa/mod.rs:49:85: replace > with == in CocoaAppInfoProvider::get_exec
espanso/src/cli/worker/engine/mod.rs:293:31: replace match guard with true
espanso-detect/src/win32/mod.rs:300:47: replace > with < in <impl From<RawInputEvent> for Option<InputEvent>>::from
espanso-render/src/extension/date.rs:270:9: delete match arm
espanso/src/cli/modulo/troubleshoot.rs:28:5: replace troubleshoot_main -> i32 with 1
espanso-ipc/src/windows.rs:50:9: replace <impl IPCServer<Event> for WinIPCServer>::run -> anyhow::Result<()> with Ok(())
espanso-config/src/config/resolve.rs:212:9: replace <impl Config for ResolvedConfig>::paste_shortcut -> Option<String> with None
espanso/src/path/macos.rs:28:5: replace is_espanso_in_path -> bool with true
espanso/src/cli/cmd.rs:32:5: replace new -> CliModule with Default::default()
espanso/src/cli/workaround/mod.rs:35:5: replace workaround_main -> i32 with -1
espanso-detect/src/evdev/mod.rs:378:9: delete match arm
espanso-engine/src/process/middleware/render.rs:62:9: replace <impl Middleware for RenderMiddleware<'_>>::name -> &'static str with ""
espanso-detect/src/evdev/device.rs:129:16: replace < with == in Device::read
espanso-engine/src/process/default.rs:129:9: replace DefaultProcessor<'a>::process_one -> Option<Event> with None
espanso-detect/src/mac/mod.rs:471:9: delete match arm
espanso-render/src/extension/date.rs:220:9: delete match arm
espanso-detect/src/layout/wayland.rs:9:5: replace pid_from_wayland_display_fd -> i32 with 0
espanso-package/src/util/download.rs:69:10: replace == with != in verify_sha256
espanso/src/cli/path.rs:33:5: replace path_main -> i32 with 0
espanso-modulo/src/sys/form/mod.rs:365:5: replace show -> HashMap<String, String> with HashMap::from_iter([(String::new(), "xyzzy".into())])
espanso-render/src/extension/shell.rs:164:13: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:384:9: delete match arm
espanso-info/src/cocoa/mod.rs:78:9: replace CocoaAppInfoProvider::get_title -> Option<String> with Some("xyzzy".into())
espanso-info/src/cocoa/mod.rs:94:9: replace CocoaAppInfoProvider::get_title_fallback -> Option<String> with None
espanso/src/cli/daemon/keyboard_layout_watcher.rs:52:27: replace != with == in watcher_main
espanso-clipboard/src/x11/mod.rs:43:9: replace <impl Clipboard for X11Clipboard>::get_text -> Option<String> with None
espanso-modulo/src/sys/search/mod.rs:166:5: replace show -> Option<String> with Some("xyzzy".into())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:307:9: delete match arm
espanso-render/src/extension/date.rs:326:9: delete match arm
espanso-detect/src/evdev/device.rs:61:9: replace Device::from -> Result<Device> with Ok(Default::default())
espanso/src/gui/modulo/form.rs:83:28: replace > with == in <impl FormUI for ModuloFormUI<'_>>::show
espanso/src/patch/patches/linux/virtualbox_x11.rs:30:53: delete ! in patch
espanso-detect/src/hotkey/keys.rs:291:13: delete match arm
espanso-render/src/extension/random.rs:35:9: replace <impl Extension for RandomExtension>::name -> &'static str with ""
espanso-package/src/provider/git.rs:43:9: replace GitPackageProvider::clone_repo -> Result<()> with Ok(())
espanso-inject/src/x11/xdotool/mod.rs:64:38: replace << with >> in X11XDOToolInjector::xfake_release_all_keys
espanso-engine/src/process/middleware/matcher.rs:154:41: replace > with < in <impl Middleware for MatcherMiddleware<'_, State>>::next
espanso-render/src/extension/date.rs:184:9: delete match arm
espanso-modulo/src/sys/wizard/mod.rs:105:9: replace show::on_completed with ()
espanso-package/src/provider/hub.rs:55:9: replace <impl PackageProvider for EspansoHubPackageProvider>::name -> String with String::new()
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:313:9: delete match arm
espanso-engine/src/process/middleware/matcher.rs:253:36: replace || with && in should_skip_key_event_due_to_modifier_press
espanso-inject/src/keys.rs:140:9: replace <impl Display for Key>::fmt -> std::fmt::Result with Ok(Default::default())
espanso-package/src/util/download.rs:74:5: replace extract_zip -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:670:9: delete match arm
espanso/src/cli/worker/engine/funnel/detect.rs:37:9: replace <impl funnel::Source<'a> for DetectSource>::register -> usize with 1
espanso-detect/src/win32/mod.rs:300:47: replace > with == in <impl From<RawInputEvent> for Option<InputEvent>>::from
espanso-inject/src/x11/xdotool/mod.rs:170:9: replace <impl Injector for X11XDOToolInjector>::send_string -> anyhow::Result<()> with Ok(())
espanso-config/src/config/store.rs:102:53: replace == with != in DefaultConfigStore::load
espanso-engine/src/process/middleware/matcher.rs:184:5: replace is_event_of_interest -> bool with true
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:99:9: delete match arm
espanso-engine/src/process/middleware/cursor_hint.rs:64:5: replace process_cursor_hint -> (String, Option<usize>) with ("xyzzy".into(), Some(0))
espanso-detect/src/x11/mod.rs:180:35: replace |= with &= in <impl Source for X11Source>::initialize
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:551:9: delete match arm
espanso/src/config.rs:93:33: replace == with != in load_config
espanso/src/lock.rs:39:9: replace Lock::acquire -> Option<Lock> with None
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:642:9: delete match arm
espanso-render/src/extension/date.rs:345:9: delete match arm
espanso-ui/src/win32/notification.rs:41:5: replace initialize_notification_thread -> Result<()> with Ok(())
espanso-render/src/extension/date.rs:161:9: delete match arm
espanso/src/gui/modulo/manager.rs:77:9: replace ModuloManager::invoke -> Result<String> with Ok(String::new())
espanso-clipboard/src/x11/native/mod.rs:69:9: replace <impl Clipboard for X11NativeClipboard>::set_image -> anyhow::Result<()> with Ok(())
espanso/src/main.rs:488:9: delete match arm
espanso-detect/src/evdev/mod.rs:420:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:431:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:567:9: delete match arm
espanso-inject/src/keys.rs:279:13: delete match arm
espanso-detect/src/mac/mod.rs:446:9: delete match arm
espanso-detect/src/evdev/mod.rs:360:9: delete match arm
espanso-render/src/extension/date.rs:133:9: delete match arm
espanso-package/src/provider/git.rs:74:12: delete ! in <impl PackageProvider for GitPackageProvider>::download
espanso-inject/src/x11/default/mod.rs:532:45: replace * with + in <impl Injector for X11DefaultInjector>::send_keys
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:572:9: delete match arm
espanso-detect/src/hotkey/keys.rs:282:13: delete match arm
espanso/src/cli/worker/engine/funnel/modifier.rs:82:9: replace ModifierStateStore::update_state with ()
espanso/src/path/mod.rs:252:5: replace get_default_runtime_dir -> Option<PathBuf> with Some(Default::default())
espanso-inject/src/x11/default/mod.rs:427:25: replace != with == in X11DefaultInjector::xtest_send_key
espanso-inject/src/x11/xdotool/mod.rs:124:33: replace & with | in X11XDOToolInjector::fast_release_all_keys
espanso-render/src/extension/date.rs:367:9: delete match arm
espanso-config/src/config/util.rs:45:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:199:9: delete match arm
espanso-engine/src/process/middleware/matcher.rs:242:9: delete match arm
espanso-inject/src/lib.rs:162:5: replace get_injector -> Result<Box<dyn Injector>> with Ok(Box::new(Default::default()))
espanso-render/src/extension/date.rs:284:9: delete match arm
espanso-modulo/src/sys/troubleshooting/mod.rs:142:9: replace show::open_file with ()
espanso/src/cli/daemon/ipc.rs:30:5: replace initialize_and_spawn -> Result<()> with Ok(())
espanso-render/src/extension/date.rs:162:9: delete match arm
espanso/src/cli/worker/mod.rs:90:76: replace == with != in worker_main
espanso/src/gui/modulo/form.rs:58:9: replace <impl FormUI for ModuloFormUI<'_>>::show -> anyhow::Result<Option<HashMap<String, String>>> with Ok(Some(HashMap::from_iter([("xyzzy".into(), String::new())])))
espanso-inject/src/evdev/mod.rs:324:45: replace * with / in <impl Injector for EVDEVInjector>::send_keys
espanso-engine/src/process/middleware/icon_status.rs:53:13: delete match arm
espanso-ui/src/linux/mod.rs:104:9: replace <impl UIEventLoop for LinuxEventLoop>::run -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:566:9: delete match arm
espanso-modulo/src/form/config.rs:24:5: replace default_title -> String with String::new()
espanso-render/src/extension/date.rs:224:9: delete match arm
espanso/src/gui/modulo/search.rs:51:9: replace <impl SearchUI for ModuloSearchUI<'_>>::show -> anyhow::Result<Option<String>> with Ok(Some("xyzzy".into()))
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:237:9: delete match arm
espanso/src/cli/env_path.rs:64:5: replace error_print_and_log with ()
espanso-render/src/extension/date.rs:306:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:369:9: delete match arm
espanso-render/src/extension/date.rs:332:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:194:9: delete match arm
espanso/src/cli/modulo/search.rs:26:5: replace search_main -> i32 with 1
espanso-engine/src/process/middleware/matcher.rs:229:5: replace is_invalidating_event -> bool with true
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:85:9: delete match arm
espanso/src/main.rs:607:42: replace == with != in main
espanso-engine/src/process/middleware/discard.rs:55:48: replace && with || in <impl Middleware for EventsDiscardMiddleware>::next
espanso-detect/src/x11/mod.rs:164:17: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:211:9: delete match arm
espanso/src/cli/package/mod.rs:49:5: replace package_main -> i32 with 1
espanso-inject/src/x11/xdotool/mod.rs:263:5: replace convert_key_to_keysym -> Option<String> with Some(String::new())
espanso/src/cli/worker/match_cache.rs:55:9: replace <impl super::engine::process::middleware::render::MatchProvider<'a> for MatchCache<'a>>::matches -> Vec<&'a Match> with vec![]
espanso-detect/src/win32/mod.rs:384:9: delete match arm
espanso/src/cli/service/stop.rs:80:5: replace wait_for_worker_to_be_stopped -> bool with false
espanso-detect/src/win32/mod.rs:417:9: delete match arm
espanso-detect/src/win32/mod.rs:421:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:336:9: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:415:36: replace / with * in SimpleWindow::draw
espanso/src/cli/util.rs:77:5: replace is_subject_to_app_translocation_on_macos -> bool with false
espanso-ui/src/win32/mod.rs:301:9: replace <impl UIRemote for Win32Remote>::show_context_menu with ()
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:649:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:561:9: delete match arm
espanso-ui/src/lib.rs:68:5: replace create_ui -> Result<(Box<dyn UIRemote>, Box<dyn UIEventLoop>)> with Ok((Box::new(Default::default()), Box::new(Default::default())))
espanso-modulo/src/search/algorithm.rs:42:5: replace exact_match -> Vec<usize> with vec![1]
espanso-ui/src/mac/mod.rs:138:9: replace <impl UIEventLoop for MacEventLoop>::run -> Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:562:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:146:9: delete match arm
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:73:9: delete match arm
espanso-detect/src/evdev/device.rs:66:60: replace == with != in Device::from
espanso/src/cli/worker/mod.rs:62:5: replace worker_main -> i32 with 0
espanso/src/patch/patches/linux/libreoffice_writer_x11.rs:28:50: replace && with || in patch
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:662:9: delete match arm
espanso-engine/src/process/middleware/suppress.rs:46:16: delete ! in <impl Middleware for SuppressMiddleware<'_>>::next
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:508:9: delete match arm
espanso-config/src/config/resolve.rs:277:9: replace <impl Config for ResolvedConfig>::search_trigger -> Option<String> with Some(String::new())
espanso-detect/src/mac/mod.rs:144:65: replace == with != in native_callback
espanso-detect/src/evdev/sync/wayland.rs:420:59: replace / with * in SimpleWindow::draw
espanso-engine/src/process/middleware/multiplex.rs:41:9: replace <impl Middleware for MultiplexMiddleware<'_>>::name -> &'static str with "xyzzy"
espanso/src/patch/patches/linux/simple_terminal_x11.rs:28:50: replace && with || in patch
espanso-ui/src/mac/mod.rs:231:13: delete match arm
espanso/src/cli/worker/config.rs:203:9: replace <impl crate::gui::modulo::form::ModuloFormUIOptionProvider for ConfigManager<'_>>::get_post_form_delay -> usize with 0
espanso-detect/src/evdev/sync/wayland.rs:339:9: replace <impl KeyboardHandler for SimpleWindow>::release_key with ()
espanso/src/cli/worker/engine/funnel/detect.rs:41:9: replace <impl funnel::Source<'a> for DetectSource>::receive -> Option<Event> with None
espanso-detect/src/x11/mod.rs:304:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:528:9: delete match arm
espanso-detect/src/evdev/device.rs:63:50: replace | with & in Device::from
espanso-detect/src/hotkey/keys.rs:275:13: delete match arm
espanso-config/src/matches/mod.rs:67:9: replace Match::cause_description -> Option<&str> with None
espanso-clipboard/src/x11/native/mod.rs:57:26: replace > with < in <impl Clipboard for X11NativeClipboard>::set_text
espanso-inject/src/keys.rs:307:13: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:170:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:502:9: delete match arm
espanso-config/src/config/resolve.rs:349:9: replace <impl Config for ResolvedConfig>::x11_use_xclip_backend -> bool with false
espanso/src/cli/package/mod.rs:71:13: delete match arm
espanso-detect/src/mac/mod.rs:413:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:381:9: delete match arm
espanso/src/path/linux.rs:32:8: delete ! in add_espanso_to_path
espanso-detect/src/mac/mod.rs:451:9: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:176:9: replace <impl CompositorHandler for SimpleWindow>::frame with ()
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:539:9: delete match arm
espanso-modulo/src/search/algorithm.rs:47:17: replace || with && in exact_match
espanso-info/src/win32/mod.rs:64:86: replace > with < in WinAppInfoProvider::get_title
espanso-info/src/x11/mod.rs:48:9: replace X11AppInfoProvider::get_exec -> Option<String> with Some(String::new())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:155:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:157:9: delete match arm
espanso/src/gui/modulo/search.rs:74:30: replace > with < in <impl SearchUI for ModuloSearchUI<'_>>::show
espanso-detect/src/evdev/mod.rs:345:9: delete match arm
espanso-engine/src/process/middleware/discard.rs:47:9: replace <impl Middleware for EventsDiscardMiddleware>::name -> &'static str with ""
espanso/src/cli/worker/engine/funnel/ipc.rs:46:9: replace <impl funnel::Source<'a> for IpcEventSource<'a>>::register -> usize with 0
espanso-detect/src/evdev/sync/wayland.rs:420:46: replace - with + in SimpleWindow::draw
espanso-render/src/extension/date.rs:175:9: delete match arm
espanso-mac-utils/src/lib.rs:55:20: replace > with == in get_secure_input_application
espanso-detect/src/win32/mod.rs:342:13: delete match arm
espanso-clipboard/src/x11/mod.rs:63:9: replace <impl Clipboard for X11Clipboard>::set_image -> anyhow::Result<()> with Ok(())
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:72:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:615:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:305:9: delete match arm
espanso/src/cli/service/unix.rs:41:12: replace < with == in fork_daemon
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:71:29: delete match arm
espanso-detect/src/evdev/mod.rs:196:89: replace != with == in <impl Source for EVDEVSource>::eventloop
espanso-package/src/util/download.rs:45:5: replace read_string_from_url -> Result<String> with Ok(String::new())
espanso-config/src/config/resolve.rs:339:9: replace <impl Config for ResolvedConfig>::evdev_modifier_delay -> Option<usize> with Some(0)
espanso/src/path/mod.rs:312:5: replace is_portable_mode -> bool with false
espanso-config/src/config/resolve.rs:57:9: replace <impl Config for ResolvedConfig>::id -> i32 with 1
espanso-inject/src/keys.rs:310:13: delete match arm
espanso/src/patch/patches/linux/kitty_terminal_x11.rs:28:53: delete ! in patch
espanso-detect/src/layout/mod.rs:56:5: replace get_active_layout -> Option<String> with Some("xyzzy".into())
espanso/src/cli/worker/builtin/mod.rs:65:42: replace || with && in get_builtin_matches
espanso-detect/src/x11/mod.rs:155:9: replace <impl Source for X11Source>::initialize -> Result<()> with Ok(())
espanso-modulo/src/form/config.rs:173:5: replace default_values -> Vec<String> with vec![]
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:251:9: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:372:9: replace SimpleWindow::draw with ()
espanso-render/src/extension/date.rs:394:9: delete match arm
espanso-detect/src/mac/mod.rs:156:79: replace == with != in native_callback
espanso/src/cli/util.rs:60:5: replace prevent_running_as_root_on_macos with ()
espanso-render/src/extension/date.rs:404:9: delete match arm
espanso-detect/src/hotkey/keys.rs:268:13: delete match arm
espanso/src/cli/worker/engine/process/middleware/render/mod.rs:147:5: replace convert_var -> espanso_render::Variable with Default::default()
espanso-detect/src/evdev/mod.rs:212:20: replace < with > in <impl Source for EVDEVSource>::eventloop
espanso-detect/src/x11/mod.rs:350:35: replace & with | in convert_raw_input_event_to_input_event
espanso-render/src/extension/date.rs:395:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:175:9: delete match arm
espanso-render/src/extension/date.rs:346:9: delete match arm
espanso-detect/src/evdev/sync/wayland.rs:428:39: replace % with + in SimpleWindow::draw
espanso-render/src/extension/date.rs:150:9: delete match arm
espanso-modulo/src/form/config.rs:116:13: delete match arm
espanso-detect/src/x11/mod.rs:441:9: delete match arm
espanso-engine/src/dispatch/executor/text_ui.rs:42:9: replace <impl Executor for TextUIExecutor<'_>>::execute -> bool with false
espanso-inject/src/linux/raw_keys.rs:25:5: replace convert_key_to_sym -> Option<u32> with Some(0)
espanso-config/src/config/resolve.rs:157:9: replace <impl Config for ResolvedConfig>::auto_restart -> bool with false
espanso-clipboard/src/x11/xclip/mod.rs:88:9: replace <impl Clipboard for XClipClipboard>::set_image -> anyhow::Result<()> with Ok(())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:222:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:578:9: delete match arm
espanso-engine/src/process/middleware/action.rs:136:71: replace - with + in <impl Middleware for ActionMiddleware<'_>>::next
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:96:9: delete match arm
espanso/src/cli/daemon/watcher.rs:143:5: replace has_hidden_attribute -> bool with false
espanso-render/src/extension/date.rs:122:9: delete match arm
espanso/src/icon.rs:140:5: replace load_icon_paths -> Result<IconPaths> with Ok(Default::default())
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:622:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:245:9: delete match arm
espanso-inject/src/evdev/mod.rs:254:21: replace > with < in EVDEVInjector::wait_delay
espanso-modulo/src/sys/search/mod.rs:200:9: replace show::result_callback with ()
espanso-config/src/config/resolve.rs:309:9: replace <impl Config for ResolvedConfig>::emulate_alt_codes -> bool with false
espanso-render/src/extension/date.rs:352:9: delete match arm
espanso-config/src/config/resolve.rs:161:9: replace <impl Config for ResolvedConfig>::pre_paste_delay -> usize with 1
espanso-detect/src/mac/mod.rs:346:52: replace == with != in <impl From<RawInputEvent> for Option<InputEvent>>::from
espanso/src/cli/worker/engine/funnel/ipc.rs:50:9: replace <impl funnel::Source<'a> for IpcEventSource<'a>>::receive -> Option<Event> with None
espanso/src/preferences/default.rs:83:9: replace <impl Preferences for DefaultPreferences<KVSType>>::has_selected_auto_start_option -> bool with false
espanso/src/cli/worker/config.rs:223:9: replace <impl espanso_engine::process::AltCodeSynthEnabledProvider for ConfigManager<'_>>::is_alt_code_synthesizer_enabled -> bool with true
espanso-clipboard/src/wayland/fallback/mod.rs:80:9: replace <impl Clipboard for WaylandFallbackClipboard>::get_text -> Option<String> with Some(String::new())
espanso/src/cli/launcher/edition_check.rs:41:5: replace get_session_type -> Option<String> with Some("xyzzy".into())
espanso-render/src/extension/form.rs:51:9: replace <impl Extension for FormExtension<'_>>::name -> &'static str with "xyzzy"
espanso-render/src/extension/date.rs:214:9: delete match arm
espanso-inject/src/x11/xdotool/mod.rs:125:46: replace + with * in X11XDOToolInjector::fast_release_all_keys
espanso-detect/src/evdev/sync/wayland.rs:42:5: replace get_modifiers_state -> Result<Option<super::ModifiersState>> with Ok(None)
espanso-clipboard/src/x11/xclip/mod.rs:97:21: delete match arm
espanso/src/cli/service/mod.rs:141:25: replace < with == in start_main
espanso-detect/src/evdev/mod.rs:212:20: replace < with == in <impl Source for EVDEVSource>::eventloop
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:163:9: delete match arm
espanso/src/preferences/default.rs:44:9: replace DefaultPreferences<KVSType>::get -> Option<T> with None
espanso-engine/src/process/middleware/match_select.rs:78:40: replace == with != in <impl Middleware for MatchSelectMiddleware<'_>>::next
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:308:9: delete match arm
espanso-detect/src/hotkey/keys.rs:285:13: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:193:9: delete match arm
espanso-config/src/config/resolve.rs:305:9: replace <impl Config for ResolvedConfig>::secure_input_notification -> bool with false
espanso/src/cli/modulo/form.rs:25:5: replace form_main -> i32 with 1
espanso/src/cli/launcher/edition_check.rs:30:28: replace match guard with false
espanso/src/cli/worker/config.rs:173:9: replace <impl espanso_engine::process::MatcherMiddlewareConfigProvider for ConfigManager<'_>>::max_history_size -> usize with 1
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:171:9: delete match arm
espanso-render/src/extension/date.rs:413:9: replace <impl LocaleProvider for DefaultLocaleProvider>::get_system_locale -> String with "xyzzy".into()
espanso/src/patch/patches/linux/konsole_terminal_x11.rs:26:5: replace patch -> PatchDefinition with Default::default()
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:295:9: delete match arm
espanso-mac-utils/src/lib.rs:108:5: replace convert_to_background_app with ()
espanso-inject/src/evdev/state.rs:60:16: replace > with < in State::get_string
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:590:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:303:9: delete match arm
espanso-detect/src/evdev/mod.rs:373:9: delete match arm
espanso-clipboard/src/x11/mod.rs:43:9: replace <impl Clipboard for X11Clipboard>::get_text -> Option<String> with Some(String::new())
espanso-inject/src/evdev/mod.rs:208:9: replace EVDEVInjector::convert_to_record_array -> Result<Vec<KeyRecord>> with Ok(vec![])
espanso-clipboard/src/x11/xclip/mod.rs:88:12: delete ! in <impl Clipboard for XClipClipboard>::set_image
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:573:9: delete match arm
espanso-inject/src/win32/mod.rs:64:9: replace <impl Injector for Win32Injector>::send_string -> Result<()> with Ok(())
espanso/src/cli/daemon/watcher.rs:71:21: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:373:9: delete match arm
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:537:9: delete match arm
espanso-detect/src/evdev/mod.rs:362:9: delete match arm
espanso/src/cli/worker/engine/process/middleware/matcher/mod.rs:92:9: delete match arm
espanso/src/cli/modulo/textview.rs:25:5: replace textview_main -> i32 with 1
espanso-info/src/x11/mod.rs:49:85: replace > with == in X11AppInfoProvider::get_exec
espanso-detect/src/x11/mod.rs:180:35: replace |= with ^= in <impl Source for X11Source>::initialize
espanso-engine/src/process/middleware/alt_code_synthesizer.rs:436:9: delete match arm
espanso-detect/src/evdev/mod.rs:352:9: delete match arm