" compiler/xcodebuild.vim if exists("current_compiler") finish endif let current_compiler = "xcodebuild" if exists(":CompilerSet") != 2 command -nargs=* CompilerSet setlocal endif let s:save_cpo = &cpo set cpo-=C CompilerSet makeprg=xcodebuild CompilerSet errorformat= \%f:%l:%c:{%*[^}]}:\ error:\ %m, \%f:%l:%c:{%*[^}]}:\ fatal\ error:\ %m, \%f:%l:%c:{%*[^}]}:\ warning:\ %m, \%f:%l:%c:\ error:\ %m, \%f:%l:%c:\ fatal\ error:\ %m, \%f:%l:%c:\ warning:\ %m, \%f:%l:\ Error:\ %m, \%f:%l:\ error:\ %m, \%f:%l:\ fatal\ error:\ %m, \%f:%l:\ warning:\ %m let &cpo = s:save_cpo unlet s:save_cpo