Mercurial > vim
annotate runtime/compiler/typedoc.vim @ 31565:7d40c8c10a12 v9.0.1115
patch 9.0.1115: code is indented more than needed
Commit: https://github.com/vim/vim/commit/ed0c1d5d4b30d03b26ff08841f6da2ddf44025a7
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Fri Dec 30 18:07:46 2022 +0000
patch 9.0.1115: code is indented more than needed
Problem: Code is indented more than needed.
Solution: Use an early return to reduce indenting. (Yegappan Lakshmanan,
closes #11758)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 30 Dec 2022 19:15:04 +0100 |
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 |