Question

I'm trying to automate file comment headers. I'm stuck trying to figure out how to insert the result of the uuidgen command into my header using vim's autocmd.

Inside the header, the placeholder text is present, like this:

#ifndef _UUID_
#define _UUID_

// Code goes here!

#endif // _UUID_

The autocmd line to populate _UUID_ in .vimrc is:

autocmd bufnewfile *.h exe "1,$s/_UUID_/" . r!uuidgen ."/g"

The problem is coming in under r!uuidgen. How do i insert the result of a shell-command-execution as text in the autocmd line? Or in a vi substitution command for that matter?

Was it helpful?

Solution

Use system(), and don't forget to chomp the result -> matchstr(system('uuidgen'), "[^\n\r]*")

NB: For more complex templates, you could use solutions like mu-template. For instance, in c-header.template, you'd have had to change the value of s:guard to the call to matchtr()+system().

OTHER TIPS

My resulting autocmd line after Luc's suggestion was, for posterity sake:

autocmd bufnewfile *.h exe "1,$g/_UUID_/s/_UUID_/" . matchstr(system('uuidgen'), "[^\n\r]*")
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top