I installed snimpmate after this guide without any problems John Andersons vim guide
$ mkdir ~/.vim/ $ mkdir ~/.vim/{autoload,bundle} $ cd ~/.vim/ $ git init git submodule add https://github.com/msanders/snipmate.vim.git bundle/snipmate
To create your own fragments
$ mkdir ~/.vim/snippets $ vim ~/.vim/snippets/python.snippets
Its example for pdb fragment
snippet pdb import pdb; pdb.set_trace()
Then you have to go well.
sayth source share