home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / runtime / ftplugin / lisp.vim < prev    next >
Encoding:
Text File  |  2012-05-31  |  872 b   |  29 lines

  1. " Vim filetype plugin
  2. " Language:      Lisp
  3. " Maintainer:    Sergey Khorev <sergey.khorev@gmail.com>
  4. " URL:         http://sites.google.com/site/khorser/opensource/vim
  5. " Original author:    Dorai Sitaram <ds26@gte.com>
  6. " Original URL:         http://www.ccs.neu.edu/~dorai/vimplugins/vimplugins.html
  7. " Last Change:   Mar 5, 2012
  8.  
  9. " Only do this when not done yet for this buffer
  10. if exists("b:did_ftplugin")
  11.   finish
  12. endif
  13.  
  14. " Don't load another plugin for this buffer
  15. let b:did_ftplugin = 1
  16.  
  17. setl comments=:;
  18. setl define=^\\s*(def\\k*
  19. setl formatoptions-=t
  20. setl iskeyword+=+,-,*,/,%,<,=,>,:,$,?,!,@-@,94
  21. setl lisp
  22.  
  23. " make comments behaviour like in c.vim
  24. " e.g. insertion of ;;; and ;; on normal "O" or "o" when staying in comment
  25. setl comments^=:;;;,:;;,sr:#\|,mb:\|,ex:\|#
  26. setl formatoptions+=croql
  27.  
  28. let b:undo_ftplugin = "setlocal comments< define< formatoptions< iskeyword< lisp<"
  29.