comparison runtime/syntax/abel.vim @ 25773:11b656e74444

Update runtime files Commit: https://github.com/vim/vim/commit/6c391a74fe90190796ca0b0c010112948a6e75d7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 9 21:55:11 2021 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 Sep 2021 22:00:10 +0200
parents 46763b01cd9a
children
comparison
equal deleted inserted replaced
25772:55753c17b73d 25773:11b656e74444
57 " wrap up type identifiers to differentiate them from normal strings 57 " wrap up type identifiers to differentiate them from normal strings
58 syn region abelSpecifier start='istype' end=';' contains=abelTypeIdChar,abelTypeId,abelTypeIdEnd keepend 58 syn region abelSpecifier start='istype' end=';' contains=abelTypeIdChar,abelTypeId,abelTypeIdEnd keepend
59 syn match abelTypeIdChar "[,']" contained 59 syn match abelTypeIdChar "[,']" contained
60 syn match abelTypeIdEnd ";" contained 60 syn match abelTypeIdEnd ";" contained
61 61
62 " string contstants and special characters within them 62 " string constants and special characters within them
63 syn match abelSpecial contained "\\['\\]" 63 syn match abelSpecial contained "\\['\\]"
64 syn region abelString start=+'+ skip=+\\"+ end=+'+ contains=abelSpecial 64 syn region abelString start=+'+ skip=+\\"+ end=+'+ contains=abelSpecial
65 65
66 " valid integer number formats (decimal, binary, octal, hex) 66 " valid integer number formats (decimal, binary, octal, hex)
67 syn match abelNumber "\<[-+]\=[0-9]\+\>" 67 syn match abelNumber "\<[-+]\=[0-9]\+\>"