If I record Search->Find, I get:
_macro('R',1);
execute('gui-find');
if (find("xxx","IP")) stop();
Ctrl+F - mapped to gui-find gives:
_macro('R',1);
gui_find();
if (find("xxx","IP")) stop();
If I record Search->find-in-files, I get
_macro('R',1);
_mffind2("xxx",'I','+t +h +s "C:\Program Files\SlickEdit Pro 21.0.0 Beta4\macros\',"*.txt",'',"192",'5');
If I record Ctrl+Shift+F (mapped to find-in-files) - I get the same thing as from the menu.
Why so many differences here?
What should it do?
Record the fact that I opened the Find dialog, or record the search command that was done?
For Find, it records both which is clearly wrong.