├── README.markdown ├── after └── plugin │ └── snipMate.vim ├── autoload └── snipMate.vim ├── doc └── snipMate.txt ├── ftplugin └── html_snip_helper.vim ├── plugin-info.txt ├── plugin └── snipMate.vim ├── snippets ├── _.snippets ├── autoit.snippets ├── c.snippets ├── cpp.snippets ├── erlang.snippets ├── html.snippets ├── java.snippets ├── javascript.snippets ├── mako.snippets ├── objc.snippets ├── perl.snippets ├── php.snippets ├── python.snippets ├── ruby.snippets ├── sh.snippets ├── snippet.snippets ├── tcl.snippets ├── tex.snippets ├── vim.snippets └── zsh.snippets └── syntax └── snippet.vim /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/README.markdown -------------------------------------------------------------------------------- /after/plugin/snipMate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/after/plugin/snipMate.vim -------------------------------------------------------------------------------- /autoload/snipMate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/autoload/snipMate.vim -------------------------------------------------------------------------------- /doc/snipMate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/doc/snipMate.txt -------------------------------------------------------------------------------- /ftplugin/html_snip_helper.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/ftplugin/html_snip_helper.vim -------------------------------------------------------------------------------- /plugin-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/plugin-info.txt -------------------------------------------------------------------------------- /plugin/snipMate.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/plugin/snipMate.vim -------------------------------------------------------------------------------- /snippets/_.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/_.snippets -------------------------------------------------------------------------------- /snippets/autoit.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/autoit.snippets -------------------------------------------------------------------------------- /snippets/c.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/c.snippets -------------------------------------------------------------------------------- /snippets/cpp.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/cpp.snippets -------------------------------------------------------------------------------- /snippets/erlang.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/erlang.snippets -------------------------------------------------------------------------------- /snippets/html.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/html.snippets -------------------------------------------------------------------------------- /snippets/java.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/java.snippets -------------------------------------------------------------------------------- /snippets/javascript.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/javascript.snippets -------------------------------------------------------------------------------- /snippets/mako.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/mako.snippets -------------------------------------------------------------------------------- /snippets/objc.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/objc.snippets -------------------------------------------------------------------------------- /snippets/perl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/perl.snippets -------------------------------------------------------------------------------- /snippets/php.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/php.snippets -------------------------------------------------------------------------------- /snippets/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/python.snippets -------------------------------------------------------------------------------- /snippets/ruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/ruby.snippets -------------------------------------------------------------------------------- /snippets/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/sh.snippets -------------------------------------------------------------------------------- /snippets/snippet.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/snippet.snippets -------------------------------------------------------------------------------- /snippets/tcl.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/tcl.snippets -------------------------------------------------------------------------------- /snippets/tex.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/tex.snippets -------------------------------------------------------------------------------- /snippets/vim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/vim.snippets -------------------------------------------------------------------------------- /snippets/zsh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/snippets/zsh.snippets -------------------------------------------------------------------------------- /syntax/snippet.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msanders/snipmate.vim/HEAD/syntax/snippet.vim --------------------------------------------------------------------------------