Mercurial > vim
annotate runtime/compiler/ts-node.vim @ 32128:9730da870503 v9.0.1395
patch 9.0.1395: Odin files are not recognized
Commit: https://github.com/vim/vim/commit/638388b8ef37684e36a7f5d9286bab2d31c28f36
Author: Amaan Qureshi <amaanq12@gmail.com>
Date: Wed Mar 8 20:35:17 2023 +0000
patch 9.0.1395: Odin files are not recognized
Problem: Odin files are not recognized.
Solution: Add a pattern for Odin files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/12122)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 08 Mar 2023 21:45:03 +0100 |
parents | 0db0640e16e0 |
children | e1df51f68736 |
rev | line source |
---|---|
21825 | 1 " Vim compiler file |
2 " Compiler: TypeScript Runner | |
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 = "node" | |
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\ ts-node | |
19 | |
20 CompilerSet makeprg=ts-node | |
21 CompilerSet errorformat=%f\ %#(%l\\,%c):\ %trror\ TS%n:\ %m, | |
22 \%E%f:%l, | |
23 \%+Z%\\w%\\+Error:\ %.%#, | |
24 \%C%p^%\\+, | |
25 \%C%.%#, | |
26 \%-G%.%# | |
27 | |
28 let &cpo = s:cpo_save | |
29 unlet s:cpo_save |