mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-snipmate
amix 8265dca5d5 Updated plugins. Switched to Ack as standard search tool (much better than grep/vimgrep) 2014-02-07 10:41:15 +00:00
..
after/plugin Updated vim plugins 2013-04-26 13:17:22 -03:00
autoload Updated plugins. Switched to Ack as standard search tool (much better than grep/vimgrep) 2014-02-07 10:41:15 +00:00
doc Updated plugins 2014-01-07 00:25:41 +00:00
ftplugin Updated all the plugins. Removed powerline. Added vim-airline (replacement for powerline). Added vim-fugitive. 2013-11-16 19:48:06 +00:00
plugin Updated plugins 2014-01-07 00:25:41 +00:00
syntax Updated all the plugins. Removed powerline. Added vim-airline (replacement for powerline). Added vim-fugitive. 2013-11-16 19:48:06 +00:00
.gitignore lets try again... 2012-08-16 23:41:25 -04:00
Contributors.md Updated plugins. Switched to Ack as standard search tool (much better than grep/vimgrep) 2014-02-07 10:41:15 +00:00
README.md Updated plugins. Switched to Ack as standard search tool (much better than grep/vimgrep) 2014-02-07 10:41:15 +00:00
addon-info.json Updated plugins 2013-08-03 14:50:12 +02:00

README.md

SnipMate

SnipMate aims to provide support for textual snippets, similar to TextMate or other Vim plugins like UltiSnips. For example, in C, typing for<tab> could be expanded to

for (i = 0; i < count; i++) {
    /* code */
}

with successive presses of tab jumping around the snippet.

Originally authored by Michael Sanders, SnipMate was forked in 2011 after a stagnation in development. This fork is currently maintained by Rok Garbas, Marc Weber, and Adnan Zafar.

Installing SnipMate

We recommend one of the following methods for installing SnipMate and its dependencies. SnipMate depends on vim-addon-mw-utils and tlib. Since SnipMate does not ship with any snippets, we suggest looking at the vim-snippets repository.

  • Using VAM, add vim-snippets to the list of packages to be installed.

  • Using Pathogen, run the following commands:

      % cd ~/.vim/bundle
      % git clone https://github.com/tomtom/tlib_vim.git
      % git clone https://github.com/MarcWeber/vim-addon-mw-utils.git
      % git clone https://github.com/garbas/vim-snipmate.git
    
      # Optional:
      % git clone https://github.com/honza/vim-snippets.git
    
  • Using Vundle, add the following to your vimrc then run :BundleInstall

      Bundle "MarcWeber/vim-addon-mw-utils"
      Bundle "tomtom/tlib_vim"
      Bundle "garbas/vim-snipmate"
    
      " Optional:
      Bundle "honza/vim-snippets"
    

Release Notes

Master

  • Fix bug with mirrors in the first column
  • Fix bug with tabs in indents (#143)

0.87 - 2014-01-04

  • Stop indenting empty lines when expanding snippets
  • Support extends keyword in .snippets files
  • Fix visual placeholder support
  • Add zero tabstop support
  • Support negative 'softtabstop'
  • Add g:snipMate_no_default_aliases option
  • Add snipMateTrigger for triggering an expansion inside a snippet
  • Add snipMate#CanBeTriggered() function