Mercurial > vim
annotate runtime/syntax/modsim3.vim @ 18492:41a5f241e9d5 v8.1.2240
patch 8.1.2240: popup window width changes when scrolling
Commit: https://github.com/vim/vim/commit/f2885d3fb7045d14ae58824e9cb8dea65e4052c4
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Nov 2 20:21:25 2019 +0100
patch 8.1.2240: popup window width changes when scrolling
Problem: Popup window width changes when scrolling.
Solution: Also adjust maxwidth when applying minwidth and there is a
scrollbar. Fix off-by-one error. (closes #5162)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 02 Nov 2019 20:30:03 +0100 |
parents | 46763b01cd9a |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Modsim III, by compuware corporation (www.compuware.com) | |
3 " Maintainer: Philipp Jocham <flip@sbox.tu-graz.ac.at> | |
4 " Extension: *.mod | |
5 " Last Change: 2001 May 10 | |
6 " | |
7 " 2001 March 24: | |
8 " - Modsim III is a registered trademark from compuware corporation | |
9 " - made compatible with Vim 6.0 | |
10 " | |
11 " 1999 Apr 22 : Changed modsim3Literal from region to match | |
12 " | |
13 " very basic things only (based on the modula2 and c files). | |
14 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
15 " 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
|
16 if exists("b:current_syntax") |
7 | 17 finish |
18 endif | |
19 | |
20 | |
21 " syn case match " case sensitiv match is default | |
22 | |
23 " A bunch of keywords | |
24 syn keyword modsim3Keyword ACTID ALL AND AS ASK | |
25 syn keyword modsim3Keyword BY CALL CASE CLASS CONST DIV | |
26 syn keyword modsim3Keyword DOWNTO DURATION ELSE ELSIF EXIT FALSE FIXED FOR | |
27 syn keyword modsim3Keyword FOREACH FORWARD IF IN INHERITED INOUT | |
28 syn keyword modsim3Keyword INTERRUPT LOOP | |
29 syn keyword modsim3Keyword MOD MONITOR NEWVALUE | |
30 syn keyword modsim3Keyword NONMODSIM NOT OBJECT OF ON OR ORIGINAL OTHERWISE OUT | |
31 syn keyword modsim3Keyword OVERRIDE PRIVATE PROTO REPEAT | |
32 syn keyword modsim3Keyword RETURN REVERSED SELF STRERR TELL | |
33 syn keyword modsim3Keyword TERMINATE THISMETHOD TO TRUE TYPE UNTIL VALUE VAR | |
34 syn keyword modsim3Keyword WAIT WAITFOR WHEN WHILE WITH | |
35 | |
36 " Builtin functions and procedures | |
37 syn keyword modsim3Builtin ABS ACTIVATE ADDMONITOR CAP CHARTOSTR CHR CLONE | |
38 syn keyword modsim3Builtin DEACTIVATE DEC DISPOSE FLOAT GETMONITOR HIGH INC | |
39 syn keyword modsim3Builtin INPUT INSERT INTTOSTR ISANCESTOR LOW LOWER MAX MAXOF | |
40 syn keyword modsim3Builtin MIN MINOF NEW OBJTYPEID OBJTYPENAME OBJVARID ODD | |
41 syn keyword modsim3Builtin ONERROR ONEXIT ORD OUTPUT POSITION PRINT REALTOSTR | |
42 syn keyword modsim3Builtin REPLACE REMOVEMONITOR ROUND SCHAR SIZEOF SPRINT | |
43 syn keyword modsim3Builtin STRLEN STRTOCHAR STRTOINT STRTOREAL SUBSTR TRUNC | |
44 syn keyword modsim3Builtin UPDATEVALUE UPPER VAL | |
45 | |
46 syn keyword modsim3BuiltinNoParen HALT TRACE | |
47 | |
48 " Special keywords | |
49 syn keyword modsim3Block PROCEDURE METHOD MODULE MAIN DEFINITION IMPLEMENTATION | |
50 syn keyword modsim3Block BEGIN END | |
51 | |
52 syn keyword modsim3Include IMPORT FROM | |
53 | |
54 syn keyword modsim3Type ANYARRAY ANYOBJ ANYREC ARRAY BOOLEAN CHAR INTEGER | |
55 syn keyword modsim3Type LMONITORED LRMONITORED NILARRAY NILOBJ NILREC REAL | |
56 syn keyword modsim3Type RECORD RMONITOR RMONITORED STRING | |
57 | |
58 " catch errros cause by wrong parenthesis | |
59 " slight problem with "( *)" or "(* )". Hints? | |
60 syn region modsim3Paren transparent start='(' end=')' contains=ALLBUT,modsim3ParenError | |
61 syn match modsim3ParenError ")" | |
62 | |
63 " Comments | |
64 syn region modsim3Comment1 start="{" end="}" contains=modsim3Comment1,modsim3Comment2 | |
65 syn region modsim3Comment2 start="(\*" end="\*)" contains=modsim3Comment1,modsim3Comment2 | |
66 " highlighting is wrong for constructs like "{ (* } *)", | |
67 " which are allowed in Modsim III, but | |
68 " I think something like that shouldn't be used anyway. | |
69 | |
70 " Strings | |
71 syn region modsim3String start=+"+ end=+"+ | |
72 | |
73 " Literals | |
74 "syn region modsim3Literal start=+'+ end=+'+ | |
75 syn match modsim3Literal "'[^']'\|''''" | |
76 | |
77 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
78 " Only when an item doesn't have highlighting yet |
7 | 79 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
80 " 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
|
81 hi def link modsim3Keyword Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
82 hi def link modsim3Block Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
83 hi def link modsim3Comment1 Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
84 hi def link modsim3Comment2 Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
85 hi def link modsim3String String |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
86 hi def link modsim3Literal Character |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
87 hi def link modsim3Include Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
88 hi def link modsim3Type Type |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
89 hi def link modsim3ParenError Error |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
90 hi def link modsim3Builtin Function |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
91 hi def link modsim3BuiltinNoParen Function |
7 | 92 |
93 | |
94 let b:current_syntax = "modsim3" | |
95 | |
96 " vim: ts=8 sw=2 | |
97 |