diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..4b24835 --- /dev/null +++ b/readme.md @@ -0,0 +1,62 @@ +ZenCoding-vim +==== +[zencoding-vim](http://mattn.github.com/zencoding-vim) is vim script support for expanding abbreviation like zen-coding. + +Installation +--- + +[Download zip +file](http://www.vim.org/scripts/script.php?script_id=2981): + + 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 http://github.com/mattn/zencoding-vim.git + +or: + + git clone http://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: + + + + + + + + + _ + + + +[More +Tutorials](https://raw.github.com/mattn/zencoding-vim/master/TUTORIAL) + + +Project Authors +--- +[Yasuhiro Matsumoto](http://mattn.kaoriya.net/)