Iām trying to record a macro that copies text and executes find_in_files with the copied text.
It looks like since Sublime Text 4, ST has supported recording find commands in macros.
Macros now record Find commands
Source
But when I try to run
in a macro I get an error:
{
"args": {"panel": "find_in_files"},
"command": "show_panel"
},
Unknown macro command show_panel.
Similarly if I execute 
{
"args": null,
"command": "find_in_files"
},
Unknown macro command find_in_files
Any idea what Iām doing wrong or how to make this work?