view runtime/compiler/zsh.vim @ 23340:8e0d6f355a5a v8.2.2213

patch 8.2.2213: checking white space around -> is not backwards compatible Commit: https://github.com/vim/vim/commit/7cfcd0c99c485a973d8cbff939531e430ad77f55 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 25 16:11:53 2020 +0100 patch 8.2.2213: checking white space around -> is not backwards compatible Problem: Checking white space around -> is not backwards compatible. Solution: Only check white space around =>.
author Bram Moolenaar <Bram@vim.org>
date Fri, 25 Dec 2020 16:15:03 +0100
parents 29c5f168c6fd
children e1df51f68736
line wrap: on
line source

" Vim compiler file
" Compiler:	Zsh
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2020 Sep 6

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

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=zsh\ -n\ --\ %:S
CompilerSet errorformat=%f:\ line\ %l:\ %m,
		       \%-G%.%#

let &cpo = s:cpo_save
unlet s:cpo_save