rspec.vim 774 B

12345678910111213141516171819202122232425262728293031323334
  1. " Vim compiler file
  2. " Language: RSpec
  3. " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
  4. " URL: https://github.com/vim-ruby/vim-ruby
  5. " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
  6. " Last Change: 2018 Aug 07
  7. " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
  8. if exists("current_compiler")
  9. finish
  10. endif
  11. let current_compiler = "rspec"
  12. let s:cpo_save = &cpo
  13. set cpo-=C
  14. CompilerSet makeprg=rspec
  15. CompilerSet errorformat=
  16. \%f:%l:\ %tarning:\ %m,
  17. \%E%.%#:in\ `load':\ %f:%l:%m,
  18. \%E%f:%l:in\ `%*[^']':\ %m,
  19. \%-Z\ \ \ \ \ %\\+\#\ %f:%l:%.%#,
  20. \%E\ \ \ \ \ Failure/Error:\ %m,
  21. \%E\ \ \ \ \ Failure/Error:,
  22. \%C\ \ \ \ \ %m,
  23. \%C%\\s%#,
  24. \%-G%.%#
  25. let &cpo = s:cpo_save
  26. unlet s:cpo_save
  27. " vim: nowrap sw=2 sts=2 ts=8: