문제

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?

도움이 되었습니까?

해결책

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

다른 팁

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]*")
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top