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

📄 elmfilt.vim

📁 MSYS在windows下模拟了一个类unix的终端
💻 VIM
字号:
" Vim syntax file" Language:	Elm Filter rules" Maintainer:	Dr. Charles E. Campbell, Jr. <Charles.E.Campbell.1@gsfc.nasa.gov>" Last Change:	November 11, 1998" 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")  finishendifsyn keyword	elmfiltAction	delete execute executec forward forwardc leave save savecopysyn match	elmfiltArg	"[^\\]%[&0-9]"lc=1	containedsyn keyword	elmfiltCond	lines always subject sender from to lines receivedsyn region	elmfiltMatch	start="/" skip="\\/" end="/"syn match	elmfiltNumber	"\d\+"syn keyword	elmfiltOper	and not matchessyn match	elmfiltOper	"\~"syn match	elmfiltOper	"<=\|>=\|!=\|<\|<\|=\|(\|)"syn keyword	elmfiltRule	if thensyn region	elmfiltString	start='"' skip='"\(\\\\\)*\\"' end='"'	contains=elmfiltArgsyn match	elmfiltComment	"^#.*$"" 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_elmfilt_syntax_inits")  if version < 508    let did_elmfilt_syntax_inits = 1    command -nargs=+ HiLink hi link <args>  else    command -nargs=+ HiLink hi def link <args>  endif  HiLink elmfiltAction	Statement  HiLink elmfiltArg	Special  HiLink elmfiltComment	Comment  HiLink elmfiltCond	Type  HiLink elmfiltMatch	Special  HiLink elmfiltNumber	Number  HiLink elmfiltOper	Operator  HiLink elmfiltRule	Statement  HiLink elmfiltString	String  delcommand HiLinkendiflet b:current_syntax = "elmfilt"" vim: ts=9

⌨️ 快捷键说明

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