I sometimes find myself writing text where part of the file is generated by an external program. Consider for example a C source file containing
/*
* To regenerate the following data, place the cursor at the beginning
* of the next line after this comment, then run
* ma:r!find /foo -name '*.in' | xargs whatever | some complicated processing
* and merge the result with
* 'a!}sort -u
*/
some
generated
stuff
here
I end up using the mouse to select the first command (ma:...), paste & run it, wait for the command to finish, the select 'a!}sort -u and paste & run it. That's inelegant because it's only semiautomatic when I think it could be fully automatic. I read the vim online help for :execute and friends but it looks like that's not doing what I want. I'm thinking more along filling a vim register with the proper command(s), then execute the register contents. The online :help registers did not give a clue so far.
Ideally, the new comment would say something like
/*
* To regenerate the following data, place the cursor on the 'j' on the
* next line in this comment, then execute it with <SHORT-MAGIC-VIM-INCANTATION>
* jjma:r!find /foo -name '*.in' | xargs whatever | ...<CR>'a!}sort -u<CR>
*/
How can this be achieved?