Mercurial > vim
view runtime/compiler/jshint.vim @ 30316:f0afaca0bf74 v9.0.0494
patch 9.0.0494: small build misses float function declaraitons
Commit: https://github.com/vim/vim/commit/96caa557f92f7e1fd61d4b401fefd30c91eb44f0
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Sep 17 21:57:43 2022 +0100
patch 9.0.0494: small build misses float function declaraitons
Problem: Small build misses float function declaraitons.
Solution: Adjust #ifdefs.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 17 Sep 2022 23:00:03 +0200 |
parents | 0db0640e16e0 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: JSHint " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2019 Jul 10 if exists("current_compiler") finish endif let current_compiler = "jshint" 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=npx\ jshint\ --verbose CompilerSet makeprg=jshint\ --verbose CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m\ (%t%n), \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save