jinja


Ⅰ. 插件描述

jinja plugins for vim (syntax and indent)

Ⅱ. 基本信息

创建日期:  2012-09-13
使用用户:  488
Github星:  102
插件作者:  Hsiaoming Yang

Ⅲ. 安装方法

使用Vundle管理器安装

在你的.vimrc下添加:
Plugin 'lepture/jinja'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall

对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。

使用NeoBundle管理器安装

在你的.vimrc下添加:
NeoBundle 'lepture/jinja'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall

使用VimPlug管理器安装

在你的.vimrc下添加:
Plug 'lepture/jinja'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/lepture/vim-jinja

Ⅳ. 文档说明

# Jinja for Vim

Jinja bundle for vim.

Feature

  1. full syntax support
  2. great indent support

Installation

Install with Vundle

If you are not using vundle, you really should have a try.
Edit your vimrc:

Bundle "lepture/vim-jinja"

And install it:

:so ~/.vimrc
:BundleInstall

Install with pathogen

If you prefer tpope's pathogen, that's ok. Just clone it:

cd ~/.vim/bundle
git clone https://github.com/lepture/vim-jinja.git

Configuration

No configuration is needed, if you are using vim 7.2+, it will detect if
a html file is a jinja template.

But if you want to ensure it works well, you can edit your vimrc:

au BufNewFile,BufRead *.html,*.htm,*.shtml,*.stm set ft=jinja

Bug report

Report a bug on GitHub Issues.

添加新评论