Mercurial > vim
view runtime/compiler/eslint.vim @ 31567:ef9591271746 v9.0.1116
patch 9.0.1116: compiler may complain about an unused function
Commit: https://github.com/vim/vim/commit/770713794a59f8f315f331025a15e3c25aa5ddfe
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Dec 30 19:54:53 2022 +0000
patch 9.0.1116: compiler may complain about an unused function
Problem: Compiler may complain about an unused function.
Solution: Add #ifdef. (John Marriott)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 30 Dec 2022 21:00:15 +0100 |
parents | bbca88cd13d5 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: ESLint for JavaScript " Maintainer: Romain Lafourcade <romainlafourcade@gmail.com> " Last Change: 2020 August 20 if exists("current_compiler") finish endif let current_compiler = "eslint" if exists(":CompilerSet") != 2 command -nargs=* CompilerSet setlocal <args> endif CompilerSet makeprg=npx\ eslint\ --format\ compact CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m,%-G%.%#