Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

vim + c++: insert a uuid in a guard clause

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?

like image 528
J. Polfer Avatar asked May 05 '10 15:05

J. Polfer


2 Answers

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().

like image 145
Luc Hermitte Avatar answered Sep 28 '22 04:09

Luc Hermitte


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]*")
like image 44
J. Polfer Avatar answered Sep 28 '22 03:09

J. Polfer