Mercurial > vim
annotate runtime/syntax/abaqus.vim @ 31160:eff0d98467e3 v9.0.0914
patch 9.0.0914: deletebufline() may move marks in the wrong window
Commit: https://github.com/vim/vim/commit/228e422855d43965f2c3319ff0cdc26ea422c10f
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sun Nov 20 11:13:17 2022 +0000
patch 9.0.0914: deletebufline() may move marks in the wrong window
Problem: deletebufline() may move marks in the wrong window.
Solution: Find a window for the buffer being changed. (closes https://github.com/vim/vim/issues/11583)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 20 Nov 2022 12:15:04 +0100 |
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" |