objc.vim

来自「MSYS在windows下模拟了一个类unix的终端」· VIM 代码 · 共 80 行

VIM
80
字号
" Vim syntax file" Language:	Objective C" Maintainer:	Valentino Kyriakides <1kyriaki@informatik.uni-hamburg.de>" Last Change:	2001 May 09" For version 5.x: Clear all syntax items" For version 6.x: Quit when a syntax file was already loadedif version < 600  syntax clearelseif exists("b:current_syntax")  finishendif" Read the C syntax to start withif version < 600  source <sfile>:p:h/c.vimelse  runtime! syntax/c.vimendif" Objective C extentions follow below"" NOTE: Objective C is abbreviated to ObjC/objc" and uses *.h, *.m as file extensions!" ObjC keywords, types, type qualifiers etc.syn keyword objcStatement	self super _cmdsyn keyword objcType			id Class SEL IMP BOOL nil Nilsyn keyword objcTypeModifier bycopy in out inout oneway" Match the ObjC #import directive (like C's #include)syn region objcImported contained start=+"+  skip=+\\\\\|\\"+  end=+"+syn match  objcImported contained "<[^>]*>"syn match  objcImport  "^#\s*import\>\s*["<]" contains=objcImported" Match the important ObjC directivessyn match  objcScopeDecl "@public\|@private\|@protected"syn match  objcDirective	"@interface\|@implementation"syn match  objcDirective	"@class\|@end\|@defs"syn match  objcDirective	"@encode\|@protocol\|@selector"" Match the ObjC method types"" NOTE: here I match only the indicators, this looks" much nicer and reduces cluttering color highlightings." However, if you prefer full method declaration matching" append .* at the end of the next two patterns!"syn match objcInstMethod  "^[\t\s]*-[\s]*"syn match objcFactMethod  "^[\t\s]*+[\s]*"" Define the default highlighting." For version 5.7 and earlier: only when not done already" For version 5.8 and later: only when an item doesn't have highlighting yetif version >= 508 || !exists("did_objc_syntax_inits")  if version < 508    let did_objc_syntax_inits = 1    command -nargs=+ HiLink hi link <args>  else    command -nargs=+ HiLink hi def link <args>  endif  HiLink objcImport	Include  HiLink objcImported	cString  HiLink objcType	Type  HiLink objcScopeDecl	Statement  HiLink objcInstMethod	Function  HiLink objcFactMethod	Function  HiLink objcStatement	Statement  HiLink objcDirective	Statement  delcommand HiLinkendiflet b:current_syntax = "objc"" vim: ts=8

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?