Mercurial > vim
annotate runtime/syntax/objc.vim @ 4305:b01e3cff9253 v7.3.902
updated for version 7.3.902
Problem: When deleting last buffer in other tab the tabline is not updated.
Solution: Set the redraw_tabline flag. (Yukihiro Nakadaira)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 15 Apr 2013 15:55:19 +0200 |
parents | 8b86b69546a9 |
children | a5352e73dc00 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Objective C | |
3 " Maintainer: Kazunobu Kuriyama <kazunobu.kuriyama@nifty.com> | |
4 " Ex-maintainer: Anthony Hodsdon <ahodsdon@fastmail.fm> | |
5 " First Author: Valentino Kyriakides <1kyriaki@informatik.uni-hamburg.de> | |
4159 | 6 " Last Change: 2013 Feb 20 |
7 " | |
8 " 2013 Feb 19 Revised based on a patch sent to the maintainer by | |
9 " Christos Kontas <xakon@yahoo.com> on 2012 Dec 12. | |
7 | 10 |
11 " For version 5.x: Clear all syntax items | |
12 " For version 6.x: Quit when a syntax file was already loaded | |
13 if version < 600 | |
14 syntax clear | |
15 elseif exists("b:current_syntax") | |
16 finish | |
17 endif | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
1121
diff
changeset
|
18 let s:keepcpo= &cpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
1121
diff
changeset
|
19 set cpo&vim |
7 | 20 |
21 if &filetype != 'objcpp' | |
22 " Read the C syntax to start with | |
23 if version < 600 | |
24 source <sfile>:p:h/c.vim | |
25 else | |
26 runtime! syntax/c.vim | |
27 endif | |
28 endif | |
29 | |
30 " Objective C extentions follow below | |
31 " | |
32 " NOTE: Objective C is abbreviated to ObjC/objc | |
33 " and uses *.h, *.m as file extensions! | |
34 | |
35 | |
36 " ObjC keywords, types, type qualifiers etc. | |
37 syn keyword objcStatement self super _cmd | |
236 | 38 syn keyword objcType id Class SEL IMP BOOL |
7 | 39 syn keyword objcTypeModifier bycopy in out inout oneway |
236 | 40 syn keyword objcConstant nil Nil |
7 | 41 |
42 " Match the ObjC #import directive (like C's #include) | |
43 syn region objcImported display contained start=+"+ skip=+\\\\\|\\"+ end=+"+ | |
1121 | 44 syn match objcImported display contained "<[-_0-9a-zA-Z.\/]*>" |
7 | 45 syn match objcImport display "^\s*\(%:\|#\)\s*import\>\s*["<]" contains=objcImported |
46 | |
47 " Match the important ObjC directives | |
48 syn match objcScopeDecl "@public\|@private\|@protected" | |
49 syn match objcDirective "@interface\|@implementation" | |
50 syn match objcDirective "@class\|@end\|@defs" | |
51 syn match objcDirective "@encode\|@protocol\|@selector" | |
711 | 52 syn match objcDirective "@try\|@catch\|@finally\|@throw\|@synchronized" |
7 | 53 |
4159 | 54 " New directives introduced with Objc-2.0 |
55 syn match objcDirective "@property\|@synthesize\|@dynamic" | |
56 syn match objcDirective "@optional\|@required" | |
57 syn match objcDirective "@autoreleasepool" | |
58 | |
7 | 59 " Match the ObjC method types |
60 " | |
61 " NOTE: here I match only the indicators, this looks | |
62 " much nicer and reduces cluttering color highlightings. | |
63 " However, if you prefer full method declaration matching | |
64 " append .* at the end of the next two patterns! | |
65 " | |
66 syn match objcInstMethod "^\s*-\s*" | |
67 syn match objcFactMethod "^\s*+\s*" | |
68 | |
69 " To distinguish from a header inclusion from a protocol list. | |
70 syn match objcProtocol display "<[_a-zA-Z][_a-zA-Z0-9]*>" contains=objcType,cType,Type | |
71 | |
72 | |
73 " To distinguish labels from the keyword for a method's parameter. | |
74 syn region objcKeyForMethodParam display | |
75 \ start="^\s*[_a-zA-Z][_a-zA-Z0-9]*\s*:\s*(" | |
76 \ end=")\s*[_a-zA-Z][_a-zA-Z0-9]*" | |
77 \ contains=objcType,objcTypeModifier,cType,cStructure,cStorageClass,Type | |
78 | |
79 " Objective-C Constant Strings | |
80 syn match objcSpecial display "%@" contained | |
81 syn region objcString start=+\(@"\|"\)+ skip=+\\\\\|\\"+ end=+"+ contains=cFormat,cSpecial,objcSpecial | |
82 | |
83 " Objective-C Message Expressions | |
84 syn region objcMessage display start="\[" end="\]" contains=objcMessage,objcStatement,objcType,objcTypeModifier,objcString,objcConstant,objcDirective,cType,cStructure,cStorageClass,cString,cCharacter,cSpecialCharacter,cNumbers,cConstant,cOperator,cComment,cCommentL,Type | |
85 | |
86 syn cluster cParenGroup add=objcMessage | |
87 syn cluster cPreProcGroup add=objcMessage | |
88 | |
89 " Define the default highlighting. | |
90 " For version 5.7 and earlier: only when not done already | |
91 " For version 5.8 and later: only when an item doesn't have highlighting yet | |
92 if version >= 508 || !exists("did_objc_syntax_inits") | |
93 if version < 508 | |
94 let did_objc_syntax_inits = 1 | |
95 command -nargs=+ HiLink hi link <args> | |
96 else | |
97 command -nargs=+ HiLink hi def link <args> | |
98 endif | |
99 | |
100 HiLink objcImport Include | |
101 HiLink objcImported cString | |
102 HiLink objcTypeModifier objcType | |
103 HiLink objcType Type | |
104 HiLink objcScopeDecl Statement | |
105 HiLink objcInstMethod Function | |
106 HiLink objcFactMethod Function | |
107 HiLink objcStatement Statement | |
108 HiLink objcDirective Statement | |
109 HiLink objcKeyForMethodParam None | |
110 HiLink objcString cString | |
111 HiLink objcSpecial Special | |
112 HiLink objcProtocol None | |
236 | 113 HiLink objcConstant cConstant |
7 | 114 |
115 delcommand HiLink | |
116 endif | |
117 | |
118 let b:current_syntax = "objc" | |
119 | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
1121
diff
changeset
|
120 let &cpo = s:keepcpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
1121
diff
changeset
|
121 unlet s:keepcpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
1121
diff
changeset
|
122 |
7 | 123 " vim: ts=8 |