Mercurial > vim
annotate runtime/syntax/abaqus.vim @ 25373:d5b80262eac9
Added tag v8.2.3223 for changeset c63a2d24b7e2f22c121fa8bf123bfbb59ea1c9fd
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 25 Jul 2021 20:30:05 +0200 |
parents | 46763b01cd9a |
children | 2198955f9e27 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Abaqus finite element input file (www.hks.com) | |
3 " Maintainer: Carl Osterwisch <osterwischc@asme.org> | |
4 " Last Change: 2002 Feb 24 | |
5 " Remark: Huge improvement in folding performance--see filetype plugin | |
6 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
7 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
8 if exists("b:current_syntax") |
7 | 9 finish |
10 endif | |
11 | |
12 " Abaqus comment lines | |
13 syn match abaqusComment "^\*\*.*$" | |
14 | |
15 " Abaqus keyword lines | |
16 syn match abaqusKeywordLine "^\*\h.*" contains=abaqusKeyword,abaqusParameter,abaqusValue display | |
17 syn match abaqusKeyword "^\*\h[^,]*" contained display | |
18 syn match abaqusParameter ",[^,=]\+"lc=1 contained display | |
19 syn match abaqusValue "=\s*[^,]*"lc=1 contained display | |
20 | |
21 " Illegal syntax | |
22 syn match abaqusBadLine "^\s\+\*.*" display | |
23 | |
24 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
25 " Only when an item doesn't have highlighting yet |
7 | 26 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
27 " The default methods for highlighting. Can be overridden later |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
28 hi def link abaqusComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
29 hi def link abaqusKeyword Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
30 hi def link abaqusParameter Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
31 hi def link abaqusValue Constant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
32 hi def link abaqusBadLine Error |
7 | 33 |
34 | |
35 let b:current_syntax = "abaqus" |