zencoding-vim とは、htmlを高速で入力するための vimプラグインです。短縮表記で書いて「<c-y>,」とすると、タグ展開してくれます。導入は、vimプラグイン管理ツールである「NeoBundle」で行います。(2013/03/31作成)
0.環境
$ sw_vers ProductName: Mac OS X ProductVersion: 10.8.3 BuildVersion: 12D78
1.導入
$ mkdir -p ~/.vim/bundle $ git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
$ vim ~/.vimrc filetype plugin indent off if has('vim_starting') set runtimepath+=~/.vim/bundle/neobundle.vim call neobundle#rc(expand('~/.vim/bundle/')) endif NeoBundle 'Shougo/neobundle.vim' NeoBundle 'mattn/zencoding-vim' filetype plugin indent on
2.インストール・確認
vimを開いて以下を実行します。
:NeoBundleInstall
インストールされていれば以下となります。
:NeoBundleList
zencoding-vim
neobundle.vim
以上