Mercurial > vim
annotate runtime/compiler/typedoc.vim @ 25881:2ee0425960fe v8.2.3474
patch 8.2.3474: some places use "Vimscript" instead of "Vim script"
Commit: https://github.com/vim/vim/commit/965d2edbce1a8ccba96925be5ac4575981f68949
Author: h-east <h.east.727@gmail.com>
Date: Mon Oct 4 21:51:57 2021 +0100
patch 8.2.3474: some places use "Vimscript" instead of "Vim script"
Problem: Some places use "Vimscript" instead of "Vim script".
Solution: Consistently use "Vim script". (Hirohito Higashi, closes https://github.com/vim/vim/issues/8910)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 04 Oct 2021 23:00:05 +0200 |
parents | 0db0640e16e0 |
children | e1df51f68736 |
rev | line source |
---|---|
21825 | 1 " Vim compiler file |
2 " Compiler: TypeDoc | |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Last Change: 2020 Feb 10 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "typedoc" | |
10 | |
11 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
12 command -nargs=* CompilerSet setlocal <args> | |
13 endif | |
14 | |
15 let s:cpo_save = &cpo | |
16 set cpo&vim | |
17 | |
18 " CompilerSet makeprg=npx\ typedoc | |
19 | |
20 CompilerSet makeprg=typedoc | |
21 CompilerSet errorformat=%EError:\ %f(%l), | |
22 \%WWarning:\ %f(%l), | |
23 \%+IDocumentation\ generated\ at\ %f, | |
24 \%Z\ %m, | |
25 \%-G%.%# | |
26 | |
27 let &cpo = s:cpo_save | |
28 unlet s:cpo_save |