Mercurial > vim
annotate runtime/syntax/abaqus.vim @ 32637:39cade5fb57a v9.0.1650
patch 9.0.1650: MS-Windows: default 'viewdir' may include read-only directory
Commit: https://github.com/vim/vim/commit/801961d2c2876e5d2d0b52a585b9d04535168ebd
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jun 23 16:15:13 2023 +0100
patch 9.0.1650: MS-Windows: default 'viewdir' may include read-only directory
Problem: MS-Windows: default 'viewdir' may include read-only directory.
Solution: Use $HOME instead of $VIM for 'viewdir' default. (closes https://github.com/vim/vim/issues/12119)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 23 Jun 2023 17:30:06 +0200 |
parents | 2198955f9e27 |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Abaqus finite element input file (www.hks.com) | |
29659 | 3 " Maintainer: Carl Osterwisch <costerwi@gmail.com> |
7 | 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 |
29659 | 31 hi def link abaqusValue Constant |
32 hi def link abaqusBadLine Error | |
7 | 33 |
34 let b:current_syntax = "abaqus" |