0
0
mirror of https://github.com/vim/vim.git synced 2025-07-25 10:54:51 -04:00
vim/runtime/syntax/strace.vim

56 lines
1.9 KiB
VimL
Raw Normal View History

2004-06-13 20:20:40 +00:00
" Vim syntax file
" This is a GENERATED FILE. Please always refer to source file at the URI below.
" Language: strace output
2015-01-25 13:02:57 +01:00
" Maintainer: David Necas (Yeti) <yeti@physics.muni.cz>
" Last Change: 2015-01-16
2004-06-13 20:20:40 +00:00
" Setup
" quit when a syntax file was already loaded
if exists("b:current_syntax")
finish
2004-06-13 20:20:40 +00:00
endif
syn case match
" Parse the line
2015-01-25 13:02:57 +01:00
syn match straceSpecialChar "\\\o\{1,3}\|\\." contained
2004-06-13 20:20:40 +00:00
syn region straceString start=+"+ skip=+\\\\\|\\"+ end=+"+ contains=straceSpecialChar oneline
syn match straceNumber "\W[+-]\=\(\d\+\)\=\.\=\d\+\([eE][+-]\=\d\+\)\="lc=1
syn match straceNumber "\W0x\x\+"lc=1
syn match straceNumberRHS "\W\(0x\x\+\|-\=\d\+\)"lc=1 contained
syn match straceOtherRHS "?" contained
syn match straceConstant "[A-Z_]\{2,}"
syn region straceVerbosed start="(" end=")" matchgroup=Normal contained oneline
syn region straceReturned start="\s=\s" end="$" contains=StraceEquals,straceNumberRHS,straceOtherRHS,straceConstant,straceVerbosed oneline transparent
syn match straceEquals "\s=\s"ms=s+1,me=e-1
syn match straceParenthesis "[][(){}]"
syn match straceSysCall "^\w\+"
syn match straceOtherPID "^\[[^]]*\]" contains=stracePID,straceNumber nextgroup=straceSysCallEmbed skipwhite
syn match straceSysCallEmbed "\w\+" contained
syn keyword stracePID pid contained
syn match straceOperator "[-+=*/!%&|:,]"
syn region straceComment start="/\*" end="\*/" oneline
" Define the default highlighting
command -nargs=+ HiLink hi def link <args>
2004-06-13 20:20:40 +00:00
HiLink straceComment Comment
HiLink straceVerbosed Comment
HiLink stracePID PreProc
HiLink straceNumber Number
HiLink straceNumberRHS Type
HiLink straceOtherRHS Type
HiLink straceString String
HiLink straceConstant Function
HiLink straceEquals Type
HiLink straceSysCallEmbed straceSysCall
HiLink straceSysCall Statement
HiLink straceParenthesis Statement
HiLink straceOperator Normal
HiLink straceSpecialChar Special
HiLink straceOtherPID PreProc
2004-06-13 20:20:40 +00:00
delcommand HiLink
2004-06-13 20:20:40 +00:00
let b:current_syntax = "strace"