view runtime/compiler/jjs.vim @ 34660:765427c81d05

runtime(debcontrol): add Static-Built-Using field (#14306) Commit: https://github.com/vim/vim/commit/677cd956810e685e820a5ade5aa6c29be5044e9b Author: Guilherme Puida <guilherme@puida.xyz> Date: Thu Mar 28 05:56:50 2024 -0300 runtime(debcontrol): add Static-Built-Using field (https://github.com/vim/vim/issues/14306) Signed-off-by: Guilherme Puida <guilherme@puida.xyz> Signed-off-by: James McCoy <jamessan@jamessan.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 28 Mar 2024 10:00:10 +0100
parents 0db0640e16e0
children e1df51f68736
line wrap: on
line source

" Vim compiler file
" Compiler:	Nashorn Shell
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2018 Jan 9

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

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=jjs
CompilerSet errorformat=%f:%l:%c\ %m,
		       \%f:%l\ %m,
		       \%-G%.%#

let &cpo = s:cpo_save
unlet s:cpo_save