Mercurial > vim
annotate runtime/syntax/mmp.vim @ 22643:71b57779177d v8.2.1870
patch 8.2.1870: Vim9: no need to keep all script variables
Commit: https://github.com/vim/vim/commit/39ca4127a094d8aca6f77c01be4f3fea506d5cb7
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 20 14:25:07 2020 +0200
patch 8.2.1870: Vim9: no need to keep all script variables
Problem: Vim9: no need to keep all script variables.
Solution: Only keep script variables when a function was defined that could
use them. Fix freeing static string on exit.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 20 Oct 2020 14:30:04 +0200 |
parents | 43efa4f5a8ea |
children |
rev | line source |
---|---|
1620 | 1 " Vim syntax file |
2 " Language: Symbian meta-makefile definition (MMP) | |
3 " Maintainer: Ron Aaron <ron@ronware.org> | |
4 " Last Change: 2007/11/07 | |
5 " URL: http://ronware.org/wiki/vim/mmp | |
6 " Filetypes: *.mmp | |
7 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
8 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
9 if exists("b:current_syntax") |
1620 | 10 finish |
11 endif | |
12 | |
13 syn case ignore | |
14 | |
15 syn match mmpComment "//.*" | |
16 syn region mmpComment start="/\*" end="\*\/" | |
17 | |
18 syn keyword mmpKeyword aif asspabi assplibrary aaspexports baseaddress | |
19 syn keyword mmpKeyword debuglibrary deffile document epocheapsize | |
20 syn keyword mmpKeyword epocprocesspriority epocstacksize exportunfrozen | |
21 syn keyword mmpStorage lang library linkas macro nostrictdef option | |
22 syn keyword mmpStorage resource source sourcepath srcdbg startbitmap | |
23 syn keyword mmpStorage start end staticlibrary strictdepend systeminclude | |
24 syn keyword mmpStorage systemresource target targettype targetpath uid | |
25 syn keyword mmpStorage userinclude win32_library | |
26 | |
27 syn match mmpIfdef "\#\(include\|ifdef\|ifndef\|if\|endif\|else\|elif\)" | |
28 | |
29 syn match mmpNumber "\d+" | |
30 syn match mmpNumber "0x\x\+" | |
31 | |
32 | |
33 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
1620
diff
changeset
|
34 " Only when an item doesn't have highlighting yet |
1620 | 35 if !exists("did_mmp_syntax_inits") |
36 let did_mmp_syntax_inits=1 | |
37 | |
38 hi def link mmpComment Comment | |
39 hi def link mmpKeyword Keyword | |
40 hi def link mmpStorage StorageClass | |
41 hi def link mmpString String | |
42 hi def link mmpNumber Number | |
43 hi def link mmpOrdinal Operator | |
44 hi def link mmpIfdef PreCondit | |
45 endif | |
46 | |
47 let b:current_syntax = "mmp" | |
48 | |
49 " vim: ts=8 |