Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 1.14 KB

README.mkd

File metadata and controls

62 lines (42 loc) · 1.14 KB

ZenCoding-vim

zencoding-vim is vim script support for expanding abbreviation like zen-coding.

Installation

Download zip file:

cd ~/.vim
unzip zencoding-vim.zip

If you install pathogen.vim:

cd ~/.vim/bundle # or make directory
unzip /path/to/zencoding-vim.zip

If you get source from repository:

cd ~/.vim/bundle # or make directory
git clone https://github.com/mattn/zencoding-vim.git

or:

git clone https://github.com/mattn/zencoding-vim.git
cd zencoding-vim
cp plugin/zencoding.vim ~/.vim/plugin/
cp autoload/zencoding.vim ~/.vim/autoload/

Quick Tutorial

Open or create New File:

vim index.html

Type ("_" is the cursor position):

html:5_

Then type "," (Ctrl + y + ','), you should see:

<!DOCTYPE HTML>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title></title>
</head>
<body>
	_
</body>
</html>

More Tutorials

Project Authors

Yasuhiro Matsumoto