mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-01 09:41:08 +00:00
[MLIR] Fix MLIR vim syntax file
This commit fixes several things in the MLIR vim syntax file: - Spell checking is now on by default only in comments. - '#' now starts an identifier instead of starting an outline attribute declaration, which fixes coloring the rest of the line as a preprocessor directive when there is a '#' in the middle. - '!' and '^' -prefixed identifiers are now colored as types and labels. Reviewed By: bondhugula Differential Revision: https://reviews.llvm.org/D122626
This commit is contained in:
parent
920de9c94c
commit
b08ede4374
@ -84,12 +84,22 @@ syn match mlirNumber /x\s*\zs-\?\d\+\ze\s*x/
|
||||
syn match mlirFloat /-\?\<\d\+\.\d*\(e[+-]\d\+\)\?\>/
|
||||
syn match mlirFloat /\<0x\x\+\>/
|
||||
syn keyword mlirBoolean true false
|
||||
syn match mlirComment /\/\/.*$/
|
||||
" Spell checking is enabled only in comments by default.
|
||||
syn match mlirComment /\/\/.*$/ contains=@Spell
|
||||
syn region mlirString start=/"/ skip=/\\"/ end=/"/
|
||||
syn match mlirLabel /[-a-zA-Z$._][-a-zA-Z$._0-9]*:/
|
||||
" Prefixed identifiers usually used for ssa values and symbols.
|
||||
syn match mlirIdentifier /[%@][a-zA-Z$._-][a-zA-Z0-9$._-]*/
|
||||
syn match mlirIdentifier /[%@!]\d\+\>/
|
||||
syn match mlirMapSetOutline "#.*$"
|
||||
syn match mlirIdentifier /[%@]\d\+\>/
|
||||
" Prefixed identifiers usually used for blocks.
|
||||
syn match mlirBlockIdentifier /\^[a-zA-Z$._-][a-zA-Z0-9$._-]*/
|
||||
syn match mlirBlockIdentifier /\^\d\+\>/
|
||||
" Prefixed identifiers usually used for types.
|
||||
syn match mlirTypeIdentifier /![a-zA-Z$._-][a-zA-Z0-9$._-]*/
|
||||
syn match mlirTypeIdentifier /!\d\+\>/
|
||||
" Prefixed identifiers usually used for attribute aliases and result numbers.
|
||||
syn match mlirAttrIdentifier /#[a-zA-Z$._-][a-zA-Z0-9$._-]*/
|
||||
syn match mlirAttrIdentifier /#\d\+\>/
|
||||
|
||||
" Syntax-highlight lit test commands and bug numbers.
|
||||
syn match mlirSpecialComment /\/\/\s*RUN:.*$/
|
||||
@ -111,7 +121,6 @@ if version >= 508 || !exists("did_c_syn_inits")
|
||||
|
||||
HiLink mlirType Type
|
||||
HiLink mlirOps Statement
|
||||
HiLink mlirMapSetOutline PreProc
|
||||
HiLink mlirNumber Number
|
||||
HiLink mlirComment Comment
|
||||
HiLink mlirString String
|
||||
@ -122,6 +131,9 @@ if version >= 508 || !exists("did_c_syn_inits")
|
||||
HiLink mlirConstant Constant
|
||||
HiLink mlirSpecialComment SpecialComment
|
||||
HiLink mlirIdentifier Identifier
|
||||
HiLink mlirBlockIdentifier Label
|
||||
HiLink mlirTypeIdentifier Type
|
||||
HiLink mlirAttrIdentifier PreProc
|
||||
|
||||
delcommand HiLink
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user