为vim-templates插件编写模板
vim-templates
是一款相当好用的vim
插件,同时支持neovim
,
当使用vim
或neovim
建立文件时,此插件会导入预先设置模板,这大大提高了工作效率。虽然默认配置了好多的模板,但都是一些通用模板,于是就需要自己定义模板,在定义模板的过程中一些变量的引用是重要的内容。本文从官方网站:
tibabit/vim-templates
的README.md
文件中截取相关变量部分,以方便编写模板之用。同时也可以在安装插件后,使用命令::help template.txt
调出使用细节。
Customization
Creating your own templates
- Create a file
<template_name>.template
inside a folder which is searched by the plugin( see below), e.g. if you want to create a template file for a c++ main file you can name itcppmain.template
orcppm.template
- Open the file and edit, for example
h.template
1 | /** |
generates this for a file named header.h
1 | /** |
{{NAME}}
,{{EMAIL}}
,{{FILE}}
and{{TODAY}}
defined above are placeholders, which are expanded as soon as you call:TemplateExpand
.- In a new file type
:TemplateInit cppmain
to both place the above content inside the file and expand the placeholders. - If templte file name (after removing
.template
from file name) matches the current file name or extension it is automatically imported and expnded when you create a new file. - You can also use
TemplateAutoInit
vim command to import and expand templates. This command will insert and expand the template at line below the cursor.
Search paths
The plugin searches for templates as follows
- In folders named
templates
recursively up the directory tree, i.e. first in a directorytemplates
under the current working directory, then in../templates
, then '../../templates', ... - In search paths defined by
g:tmpl_search_paths
in your.vimrc
file - The
templates
folder in this plugin's directory
If you want to add a custom directory to the search path, e.g. if you
placed them inside a templates
directory under
$HOME
then add the following line in your
.vimrc
file:
1 | let g:tmpl_search_paths = ['~/templates'] |
Configuring the placeholder values
The values into which certain placeholders expand may be influenced by settings in your
.vimrc
. For examplePROJECT
expands into the value of the variableg:tmpl_project
. For more details see the list below.Other than that the expansion may also be influenced on a per-directory basis. If a matching template file is found in one of the directories of the search path, the plugin also checks whether a file called
tmpl_settings.vim
exists in the same directory. Note, than no other search directories are checked. If this is the case all its settings take preference over the.vimrc
For example: In general you want the placeholder
EMAIL
to expand tojohn.doe@example.com
in your templates, hence you place1
let g:tmpl_author_email = 'john.doe@example.com'
in your
.vimrc
. In the projects inside the folder$HOME/my_cool_stuff
, however, you want your templates to show the email addressjohns_projects@example.com
. So inside$HOME/templates
you place a file$HOME/my_cool_stuff/tmpl_settings.vim
with content1
let g:tmpl_author_email = 'johns_projects@example.com'
and all template files in
$HOME/my_cool_stuff
will now haveEMAIL
expanding to the latter value.
Placeholders
The Following placeholders are currently supported by this plugin
Date & Time
DAY
: Day of the week in short form (Mon, Tue, Wed, etc,)DAY_FULL
: Day of the week in full (Monday, Tueseday, etc.)DATE
: Date of the month (01 to 31)MONTH
: Month of the year (01 to 12)MONTH_SHORT
: Short name of the month (Jan, Feb, Mar, etc.)MONTH_FULL
: Full month name (January, February, etc.)YEAR
: current year (2016)TODAY
: Todays date in dd/mm/yyyy formatTIME
: Current time in 24 our formatTIME_12
: Current time in 12 hour formatTIMESTAMP
: Current Timestamp, e.g.: Sunday Nov 27, 2016 15:33:33 IST
Authoring
NAME
: Name of the author,g:tmpl_author_name
, default :$USER
HOSTNAME
: Name of the host machine,g:tmpl_author_hostname
, default :$HOSTNAME
EMAIL
: Email of the author,g:tmpl_author_email
, default :$USER@$HOSTNAME
File name
FILE
: Basename of the filefilename.ext -> filename
FILEE
: Filename with extensionfilename.ext -> filename.ext
FILEF
: Absolute path of the file/path/to/directory/filename.ext
FILER
: Filepath relative to the current directory (pwd)/relative/to/filename.ext
FILED
: Absolute path of the file's parent directory/path/to/directory
FILEP
: The file's parent directory/path/to/directory -> directory
FILERD
: Directory relative to the current directory (pwd)/relative/to/
License and Copyright
LICENSE
: License of the project,g:tmpl_license
, default :MIT
LICENSE_FILE
: Reads lincese from license file onto the next line,g:tmpl_license_file
. If no file path is provided then file is read in following order-- LICENSE
- LICENSE.txt
- LICENSE.md
- license.txt
- license.md
COPYRIGHT
: Copyright message,g:tmpl_copyright
, default :Copyright (c) g:tmpl_company
Others
PROJECT
: Name of the project,g:tmpl_project
, default: not expandedCOMPANY
: Name of the company,g:tmpl_company
, default: not expandedMACRO_GUARD
: Macro guard for use in c/c++ files.filename.h -> FILENAME_H
. All dots(.) and dashes (-) present in filename are converted into underscores (_).MACRO_GUARD_FULL
: Same asMACRO_GUARD
, except relative path is used in place of file name. e.g.relative/to/filename.h -> RELATIVE_TO_FILENAME_H
CLASS
: class name, same asFILE
CAMEL_CLASS
: class name converted to camel caselong_file_name.txt -> LongFileName
SNAKE_CLASS
: class name converted to snake caseLongFileName.txt -> long_file_name
CURSOR
: This is a spacial placeholder, it does not expand into anything but the cursor is placed at this location after the template expansion