Vim plugin for creating new files from templates.
Based on Aristotle Pagaltzis <[email protected]> template script.
http://www.vim.org/scripts/script.php?script_id=1172
Modified to use .tpl extensions and a filetype definition at the top of the template. The script is no longer automatically executed for a new buffer.
In order to tell Vim to use the correct filetype for editing, you must place the following text on the first line of the template:
# filetype: xhtml
This will cause the vim filetype to be set to whatever filetype is specified after the colon (xhtml in this case). The filetype definition will then be removed from the newly created buffer.
You can still set the initial curser position in the template as per Aristotle’s original script.
To load a template use the ‘Boost’ command followed by the template name (without the .tpl suffix).
For example:
:Boost html
loads the html.tpl template into the current buffer
:Boost html-strict
loads the html-strict.tpl template into the current buffer
:Boost bash
loads the bash.tpl template into the current buffer
:Boost mytemplate
loads the mytemplate.tpl template into the current buffer
Thanks to Johannes Deutsch https://github.com/nichtleiter for the argument autocomplete feature. Now typing Boost <tab>
will show you the available list of templates (on Mac OS X and all *nix boxes).
Place boost.vim in your Vim plugins directory (or in your bundle/boost/plugin directory if you are using pathogen).
Then create a ‘templates’ directory in your .vim directory and place your .tpl templates here. For example a bash.tpl template, or a css.tpl, or any file that you would like to load as a template – as long as it ends in .tpl.
There are sample templates included in the repository.