neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

haml.vim (499B)


      1 " Vim compiler file
      2 " Compiler:	Haml
      3 " Maintainer:	Tim Pope <vimNOSPAM@tpope.org>
      4 " Last Change:	2016 Aug 29
      5 "		2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
      6 
      7 if exists("current_compiler")
      8  finish
      9 endif
     10 let current_compiler = "haml"
     11 
     12 let s:cpo_save = &cpo
     13 set cpo-=C
     14 
     15 CompilerSet makeprg=haml
     16 
     17 CompilerSet errorformat=
     18      \Haml\ %trror\ on\ line\ %l:\ %m,
     19      \Syntax\ %trror\ on\ line\ %l:\ %m,
     20      \%-G%.%#
     21 
     22 let &cpo = s:cpo_save
     23 unlet s:cpo_save
     24 
     25 " vim:set sw=2 sts=2: