You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

27 lines
642 B

  1. "=============================================================================
  2. " FILE: snippets.vim
  3. " AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
  4. " License: MIT license
  5. "=============================================================================
  6. let s:save_cpo = &cpo
  7. set cpo&vim
  8. if !exists('b:undo_ftplugin')
  9. let b:undo_ftplugin = ''
  10. else
  11. let b:undo_ftplugin = '|'
  12. endif
  13. setlocal expandtab
  14. let &l:shiftwidth=&tabstop
  15. let &l:softtabstop=&tabstop
  16. let &l:commentstring="#%s"
  17. let b:undo_ftplugin .= '
  18. \ setlocal expandtab< shiftwidth< softtabstop< tabstop< commentstring<
  19. \'
  20. let &cpo = s:save_cpo
  21. unlet s:save_cpo