Mercurial > vim
annotate runtime/syntax/typescript.vim @ 30162:d12d9d724d27 v9.0.0417
patch 9.0.0417: Jsonnet files are not recognized
Commit: https://github.com/vim/vim/commit/2a4c885d54171f68ec2c2d6eb4ae281c7fefb802
Author: =?UTF-8?q?Cezary=20Dro=C5=BCak?= <cezdro@alatek.com.pl>
Date: Thu Sep 8 14:41:48 2022 +0100
patch 9.0.0417: Jsonnet files are not recognized
Problem: Jsonnet files are not recognized.
Solution: Add a pattern for Jsonnet files. (Cezary Dro?ak, closes https://github.com/vim/vim/issues/11073,
closes #11081)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 08 Sep 2022 15:45:04 +0200 |
parents | 2acb87ee55fc |
children | 71cbad0921c9 |
rev | line source |
---|---|
16971
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 " Vim syntax file |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 " Language: TypeScript |
18750 | 3 " Maintainer: Bram Moolenaar, Herrington Darkholme |
4 " Last Change: 2019 Nov 30 | |
16971
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 " Based On: Herrington Darkholme's yats.vim |
18750 | 6 " Changes: Go to https:github.com/HerringtonDarkholme/yats.vim for recent changes. |
7 " Origin: https://github.com/othree/yajs | |
8 " Credits: Kao Wei-Ko(othree), Jose Elera Campana, Zhao Yi, Claudio Fleiner, Scott Shattuck | |
9 " (This file is based on their hard work), gumnos (From the #vim | |
10 " IRC Channel in Freenode) | |
16971
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 " This is the same syntax that is in yats.vim, but: |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 " - flattened into one file |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 " - HiLink commands changed to "hi def link" |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 " - Setting 'cpo' to the Vim value |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 if !exists("main_syntax") |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 if exists("b:current_syntax") |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
19 finish |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
20 endif |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 let main_syntax = 'typescript' |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
22 endif |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
23 |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
24 let s:cpo_save = &cpo |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
25 set cpo&vim |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
26 |
18639 | 27 " this region is NOT used in TypeScriptReact |
16971
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
28 " nextgroup doesn't contain objectLiteral, let outer region contains it |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
29 syntax region typescriptTypeCast matchgroup=typescriptTypeBrackets |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
30 \ start=/< \@!/ end=/>/ |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
31 \ contains=@typescriptType |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
32 \ nextgroup=@typescriptExpression |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
33 \ contained skipwhite oneline |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
34 |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
35 |
18639 | 36 """"""""""""""""""""""""""""""""""""""""""""""""""" |
37 " Source the part common with typescriptreact.vim | |
29756 | 38 source <sfile>:h/shared/typescriptcommon.vim |
16971
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
39 |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
40 |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
41 let b:current_syntax = "typescript" |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
42 if main_syntax == 'typescript' |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
43 unlet main_syntax |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
44 endif |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
45 |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
46 let &cpo = s:cpo_save |
e18b1c654d09
Update runtime files - Add typescript syntax and indent.
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
47 unlet s:cpo_save |