view runtime/compiler/dartanalyser.vim @ 23798:59efd230b373 v8.2.2440

patch 8.2.2440: documentation based on patches is outdated Commit: https://github.com/vim/vim/commit/853886722c051ecaef6d818ce32a822e4f43dc2b Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 31 17:03:52 2021 +0100 patch 8.2.2440: documentation based on patches is outdated Problem: Documentation based on patches is outdated. Solution: Add changes to documentation in a patch.
author Bram Moolenaar <Bram@vim.org>
date Sun, 31 Jan 2021 17:15:04 +0100
parents d4c7b3e9cd17
children e1df51f68736
line wrap: on
line source

" Vim compiler file
" Compiler:	Dart Analyzer
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2019 May 08

if exists("current_compiler")
  finish
endif
let current_compiler = "dartanalyzer"

if exists(":CompilerSet") != 2		" older Vim always used :setlocal
  command -nargs=* CompilerSet setlocal <args>
endif

let s:cpo_save = &cpo
set cpo&vim

CompilerSet makeprg=dartanalyzer\ --format\ machine
CompilerSet errorformat=%t%\\w%\\+\|%\\w%\\+\|%\\w%\\+\|%f\|%l\|%c\|%\\d%\\+\|%m,
		       \%-G%.%#

let &cpo = s:cpo_save
unlet s:cpo_save