You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Buddy Sandidge 0cb8665a31 Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
..
after/plugin Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
autoload Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
ctags Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
doc Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
ftdetect Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
ftplugin Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
plugin Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
pythonx/UltiSnips Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
rplugin/python3/deoplete/sources Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
syntax Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
test Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
utils Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
.bzrignore Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
.gitignore Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
.travis.yml Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
COPYING.txt Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
ChangeLog Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
README.md Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
pylintrc Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
test_all.py Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
travis_install.sh Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago
travis_test.sh Merge commit '94f7b722c75b178882b6596f9041ea768e12a201' as 'vim/bundle/ultisnips' 8 years ago

README.md

Build Status Stories in Ready Gitter

UltiSnips

UltiSnips is the ultimate solution for snippets in Vim. It has tons of features and is very fast.

GIF Demo

In this demo I am editing a python file. I first expand the #! snippet, then the class snippet. The completion menu comes from YouCompleteMe, UltiSnips also integrates with neocomplete. I can jump through placeholders and add text while the snippet inserts text in other places automatically: when I add Animal as a base class, __init__ gets updated to call the base class constructor. When I add arguments to the constructor, they automatically get assigned to instance variables. I then insert my personal snippet for print debugging. Note that I left insert mode, inserted another snippet and went back to add an additional argument to __init__ and the class snippet was still active and added another instance variable.

The official home of UltiSnips is at https://github.com/sirver/ultisnips. Please add pull requests and issues there.

UltiSnips was started in Jun 2009 by @SirVer. In Dec 2015, maintenance was handed over to @seletskiy.

Quick Start

This assumes you are using Vundle. Adapt for your plugin manager of choice. Put this into your .vimrc.

" Track the engine.
Plugin 'SirVer/ultisnips'

" Snippets are separated from the engine. Add this if you want them:
Plugin 'honza/vim-snippets'

" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"

" If you want :UltiSnipsEdit to split your window.
let g:UltiSnipsEditSplit="vertical"

UltiSnips comes with comprehensive documentation. As there are more options and tons of features I suggest you at least skim it.

Screencasts

From a gentle introduction to really advanced in a few minutes: The blog posts of the screencasts contain more advanced examples of the things discussed in the videos.

Also the excellent Vimcasts dedicated three episodes to UltiSnips: