vim-template
vim-template copied to clipboard
Simple templates plugin for Vim
============================= Simple Vim templates plugin
:Author: Adrian Perez [email protected]
This is a simple plugin for Vim that will allow you to have a set of templates for certain file types. It is useful to add boilerplate code like guards in C/C++ headers, or license disclaimers.
Installation
The easiest way to install the plugin is to install it as a bundle. For example, using Pathogen__:
-
Get and install
pathogen.vim <https://github.com/tpope/vim-pathogen>_. You can skip this step if you already have it installed. -
cd ~/.vim/bundle -
git clone git://github.com/aperezdc/vim-template.git
__ https://github.com/tpope/vim-pathogen
Bundle installs are known to work fine also when using Vundle__. Other bundle managers are expected to work as well.
__ https://github.com/gmarik/vundle
.. important:: If you use Fish__ as your shell, you will need to add
set shell=/bin/sh to your ~/.vimrc — the plugin relies on the
setting pointing to a Bourne-compatible__ shell.
__ http://fishshell.com/ __ https://en.wikipedia.org/wiki/Bourne_shell
Documentation
The documentation can be browsed directly in Vim::
:help template.txt
Alternatively, you can also read it in your browser__.
__ https://github.com/aperezdc/vim-template/blob/master/doc/template.txt
Updating
Manually
In order to update the plugin, go to its bundle directory and use Git to update it:
-
cd ~/.vim/bundle/vim-template -
git pull
With Vundle
Use the :BundleUpdate command provided by Vundle, for example invoking
Vim like this::
% vim +BundleUpdate