⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 csc.vim

📁 MSYS在windows下模拟了一个类unix的终端
💻 VIM
字号:
" Vim syntax file" Language: Essbase script" Maintainer:	Raul Segura Acevedo <raul@turing.iquimica.unam.mx>" Last change:	2001 May 21" 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" folds: fix/endfix and commentssy	region	EssFold start="\<Fix" end="EndFix" transparent foldsy	keyword	cscTodo contained TODO FIXME XXX" cscCommentGroup allows adding matches for special things in commentssy	cluster cscCommentGroup contains=cscTodo" Strings in quotessy	match	cscError	'"'sy	match	cscString	'"[^"]*"'"when wanted, highlight trailing white spaceif exists("csc_space_errors")	if !exists("csc_no_trail_space_error")		sy	match	cscSpaceE	"\s\+$"	endif	if !exists("csc_no_tab_space_error")		sy	match	cscSpaceE	" \+\t"me=e-1	endifendif"catch errors caused by wrong parenthesis and bracketssy	cluster	cscParenGroup	contains=cscParenE,@cscCommentGroup,cscUserCont,cscBitField,cscFormat,cscNumber,cscFloat,cscOctal,cscNumbers,cscIfError,cscComW,cscCom,cscFormula,cscBPMacrosy	region	cscParen	transparent start='(' end=')' contains=ALLBUT,@cscParenGroupsy	match	cscParenE	")""integer number, or floating point number without a dot and with "f".sy	case	ignoresy	match	cscNumbers	transparent "\<\d\|\.\d" contains=cscNumber,cscFloat,cscOctalsy	match	cscNumber	contained "\d\+\(u\=l\{0,2}\|ll\=u\)\>""hex numbersy	match	cscNumber	contained "0x\x\+\(u\=l\{0,2}\|ll\=u\)\>"" Flag the first zero of an octal number as something specialsy	match	cscOctal	contained "0\o\+\(u\=l\{0,2}\|ll\=u\)\>"sy	match	cscFloat	contained "\d\+f""floating point number, with dot, optional exponentsy	match	cscFloat	contained "\d\+\.\d*\(e[-+]\=\d\+\)\=[fl]\=""floating point number, starting with a dot, optional exponentsy	match	cscFloat	contained "\.\d\+\(e[-+]\=\d\+\)\=[fl]\=\>""floating point number, without dot, with exponentsy	match	cscFloat	contained "\d\+e[-+]\=\d\+[fl]\=\>"sy	region	cscComment	start="/\*" end="\*/" contains=@cscCommentGroup,cscSpaceE foldsy	match	cscCommentE	"\*/"sy	keyword	cscIfError	IF ELSE ENDIF ELSEIFsy	keyword	cscCondition	contained IF ELSE ENDIF ELSEIFsy	keyword	cscFunction	contained VARPER VAR UDA TRUNCATE SYD SUMRANGE SUMsy	keyword	cscFunction	contained STDDEVRANGE STDDEV SPARENTVAL SLN SIBLINGS SHIFTsy	keyword	cscFunction	contained SANCESTVAL RSIBLINGS ROUND REMAINDER RELATIVE PTDsy	keyword	cscFunction	contained PRIOR POWER PARENTVAL NPV NEXT MOD MINRANGE MINsy	keyword	cscFunction	contained MDSHIFT MDPARENTVAL MDANCESTVAL MAXRANGE MAX MATCHsy	keyword	cscFunction	contained LSIBLINGS LEVMBRS LEVsy	keyword	cscFunction	contained ISUDA ISSIBLING ISSAMELEV ISSAMEGEN ISPARENT ISMBRsy	keyword	cscFunction	contained ISLEV ISISIBLING ISIPARENT ISIDESC ISICHILD ISIBLINGSsy	keyword	cscFunction	contained ISIANCEST ISGEN ISDESC ISCHILD ISANCEST ISACCTYPEsy	keyword	cscFunction	contained IRSIBLINGS IRR INTEREST INT ILSIBLINGS IDESCENDANTSsy	keyword	cscFunction	contained ICHILDREN IANCESTORS IALLANCESTORSsy	keyword	cscFunction	contained GROWTH GENMBRS GEN FACTORIAL DISCOUNT DESCENDANTSsy	keyword	cscFunction	contained DECLINE CHILDREN CURRMBRRANGE CURLEV CURGENsy	keyword	cscFunction	contained COMPOUNDGROWTH COMPOUND AVGRANGE AVG ANCESTVALsy	keyword	cscFunction	contained ANCESTORS ALLANCESTORS ACCUM ABSsy	keyword	cscFunction	contained @VARPER @VAR @UDA @TRUNCATE @SYD @SUMRANGE @SUMsy	keyword	cscFunction	contained @STDDEVRANGE @STDDEV @SPARENTVAL @SLN @SIBLINGS @SHIFTsy	keyword	cscFunction	contained @SANCESTVAL @RSIBLINGS @ROUND @REMAINDER @RELATIVE @PTDsy	keyword	cscFunction	contained @PRIOR @POWER @PARENTVAL @NPV @NEXT @MOD @MINRANGE @MINsy	keyword	cscFunction	contained @MDSHIFT @MDPARENTVAL @MDANCESTVAL @MAXRANGE @MAX @MATCHsy	keyword	cscFunction	contained @LSIBLINGS @LEVMBRS @LEVsy	keyword	cscFunction	contained @ISUDA @ISSIBLING @ISSAMELEV @ISSAMEGEN @ISPARENT @ISMBRsy	keyword	cscFunction	contained @ISLEV @ISISIBLING @ISIPARENT @ISIDESC @ISICHILD @ISIBLINGSsy	keyword	cscFunction	contained @ISIANCEST @ISGEN @ISDESC @ISCHILD @ISANCEST @ISACCTYPEsy	keyword	cscFunction	contained @IRSIBLINGS @IRR @INTEREST @INT @ILSIBLINGS @IDESCENDANTSsy	keyword	cscFunction	contained @ICHILDREN @IANCESTORS @IALLANCESTORSsy	keyword	cscFunction	contained @GROWTH @GENMBRS @GEN @FACTORIAL @DISCOUNT @DESCENDANTSsy	keyword	cscFunction	contained @DECLINE @CHILDREN @CURRMBRRANGE @CURLEV @CURGENsy	keyword	cscFunction	contained @COMPOUNDGROWTH @COMPOUND @AVGRANGE @AVG @ANCESTVALsy	keyword	cscFunction	contained @ANCESTORS @ALLANCESTORS @ACCUM @ABSsy	match	cscFunction	contained "@"sy	match	cscError	"@\s*\a*" contains=cscFunctionsy	match	cscStatement	"&"sy	keyword	cscStatement	AGG ARRAY VAR CCONV CLEARDATA DATACOPYsy	match	cscComE	contained "^\s*CALC.*"sy	match	cscComE	contained "^\s*CLEARBLOCK.*"sy	match	cscComE	contained "^\s*SET.*"sy	match	cscComE	contained "^\s*FIX"sy	match	cscComE	contained "^\s*ENDFIX"sy	match	cscComE	contained "^\s*ENDLOOP"sy	match	cscComE	contained "^\s*LOOP"" sy	keyword	cscCom	FIX ENDFIX LOOP ENDLOOPsy	match	cscComW	"^\s*CALC.*"sy	match	cscCom	"^\s*CALC\s*ALL"sy	match	cscCom	"^\s*CALC\s*AVERAGE"sy	match	cscCom	"^\s*CALC\s*DIM"sy	match	cscCom	"^\s*CALC\s*FIRST"sy	match	cscCom	"^\s*CALC\s*LAST"sy	match	cscCom	"^\s*CALC\s*TWOPASS"sy	match	cscComW	"^\s*CLEARBLOCK.*"sy	match	cscCom	"^\s*CLEARBLOCK\s\+ALL"sy	match	cscCom	"^\s*CLEARBLOCK\s\+UPPER"sy	match	cscCom	"^\s*CLEARBLOCK\s\+NONINPUT"sy	match	cscComW	"^\s*\<SET.*"sy	match	cscCom	"^\s*\<SET\s\+Commands"sy	match	cscCom	"^\s*\<SET\s\+AGGMISSG"sy	match	cscCom	"^\s*\<SET\s\+CACHE"sy	match	cscCom	"^\s*\<SET\s\+CALCHASHTBL"sy	match	cscCom	"^\s*\<SET\s\+CLEARUPDATESTATUS"sy	match	cscCom	"^\s*\<SET\s\+FRMLBOTTOMUP"sy	match	cscCom	"^\s*\<SET\s\+LOCKBLOCK"sy	match	cscCom	"^\s*\<SET\s\+MSG"sy	match	cscCom	"^\s*\<SET\s\+NOTICE"sy	match	cscCom	"^\s*\<SET\s\+UPDATECALC"sy	match	cscCom	"^\s*\<SET\s\+UPTOLOCAL"sy	keyword	cscBPMacro	contained !LoopOnAll !LoopOnLevel !LoopOnSelectedsy	keyword	cscBPMacro	contained !CurrentMember !LoopOnDimensions !CurrentDimensionsy	keyword	cscBPMacro	contained !CurrentOtherLoopDimension !LoopOnOtherLoopDimensionssy	keyword	cscBPMacro	contained !EndLoop !AllMembers !SelectedMembers !If !Else !EndIfsy	keyword	cscBPMacro	contained LoopOnAll LoopOnLevel LoopOnSelectedsy	keyword	cscBPMacro	contained CurrentMember LoopOnDimensions CurrentDimensionsy	keyword	cscBPMacro	contained CurrentOtherLoopDimension LoopOnOtherLoopDimensionssy	keyword	cscBPMacro	contained EndLoop AllMembers SelectedMembers If Else EndIfsy	match	cscBPMacro	contained	"!"sy	match	cscBPW	"!\s*\a*"	contains=cscBPmacro" when wanted, highlighting lhs members or erros in asignments (may lag the editing)if version >= 600 && exists("csc_asignment")	sy	match	cscEqError	'\("[^"]*"\s*\|[^][\t !%()*+,--/:;<=>{}~]\+\s*\|->\s*\)*=\([^=]\@=\|$\)'	sy	region	cscFormula	transparent matchgroup=cscVarName start='\("[^"]*"\|[^][\t !%()*+,--/:;<=>{}~]\+\)\s*=\([^=]\@=\|\n\)' skip='"[^"]*"' end=';' contains=ALLBUT,cscFormula,cscFormulaIn,cscBPMacro,cscCondition	sy	region	cscFormulaIn	matchgroup=cscVarName transparent start='\("[^"]*"\|[^][\t !%()*+,--/:;<=>{}~]\+\)\(->\("[^"]*"\|[^][\t !%()*+,--/:;<=>{}~]\+\)\)*\s*=\([^=]\@=\|$\)' skip='"[^"]*"' end=';' contains=ALLBUT,cscFormula,cscFormulaIn,cscBPMacro,cscCondition contained	sy	match	cscEq	"=="endifif !exists("csc_minlines")	let csc_minlines = 50	" mostly for () constructsendifexec "sy sync ccomment cscComment minlines=" . csc_minlines" 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_csc_syntax_inits")	if version < 508		let did_csc_syntax_inits = 1		command -nargs=+ HiLink hi link <args>	else		command -nargs=+ HiLink hi def link <args>	endif	hi cscVarName term=bold ctermfg=9 gui=bold guifg=blue	HiLink	cscNumber	Number	HiLink	cscOctal	Number	HiLink	cscFloat	Float	HiLink	cscParenE	Error	HiLink	cscCommentE	Error	HiLink	cscSpaceE	Error	HiLink	cscError	Error	HiLink	cscString	String	HiLink	cscComment	Comment	HiLink	cscTodo 	Todo	HiLink	cscStatement	Statement	HiLink	cscIfError	Error	HiLink	cscEqError	Error	HiLink	cscFunction	Statement	HiLink	cscCondition	Statement	HiLink	cscWarn 	WarningMsg	HiLink	cscComE	Error	HiLink	cscCom	Statement	HiLink	cscComW	WarningMsg	HiLink	cscBPMacro	Identifier	HiLink	cscBPW		WarningMsg	delcommand HiLinkendiflet b:current_syntax = "csc"" vim: ts=8

⌨️ 快捷键说明

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