Adding a line to vimrc

rvinyard at cs.nmsu.edu rvinyard at cs.nmsu.edu
Wed Aug 13 20:48:42 UTC 2008


I'm packaging Google's protocol buffers library and noticed that they
included a proto.vim to enable vim syntax highlighting, so I'm adding a
protocol-buffer-vim subpackage.

But, to do this I need to:
  1. Drop proto.vim into /usr/share/vim/vim71/syntax/
  2. Add 'autocmd BufRead,BufNewFile *.proto setfiletype proto/' to
/etc/vimrc

The first is easy enough. The second isn't too bad if I put this into
%post vim:
%{__cp} /etc/vimrc /etc/vimrc.rpmsave
sed 's/if has("autocmd")/if has("autocmd")\n  autocmd BufRead,BufNewFile
*.proto setfiletype proto/' /etc/vimrc.rpmsave > /etc/vimrc

and this into %postun vim:
%{__cp} /etc/vimrc /etc/vimrc.rpmsave
sed -e 's/autocmd BufRead,BufNewFile \*.proto setfiletype proto//'
/etc/vimrc.rpmsave > /etc/vim

I couldn't find anything on how I should go about modifying vimrc other
than this approach. Can anyone suggest a better approach?




More information about the fedora-devel-list mailing list