comparison runtime/syntax/chaiscript.vim @ 32974:d46f974fd69e

runtime: Fix typos in various files Commit: https://github.com/vim/vim/commit/3fc7a7e44abda6505ccd39a6d067db6e5173cbf6 Author: Viktor Sz?pe <viktor@szepe.net> Date: Wed Aug 23 21:20:00 2023 +0200 runtime: Fix typos in various files closes: https://github.com/vim/vim/issues/12836 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Viktor Sz?pe <viktor@szepe.net>
author Christian Brabandt <cb@256bit.org>
date Thu, 24 Aug 2023 07:33:27 +0200
parents b9e314fe473f
children
comparison
equal deleted inserted replaced
32973:3c2cb52444e9 32974:d46f974fd69e
59 59
60 " Account for the "[1..10]" syntax, treating it as an operator 60 " Account for the "[1..10]" syntax, treating it as an operator
61 " Intentionally leaving out all of the normal, well known operators 61 " Intentionally leaving out all of the normal, well known operators
62 syn match chaiscriptOperator "\.\." 62 syn match chaiscriptOperator "\.\."
63 63
64 " Guard seperator as an operator 64 " Guard separator as an operator
65 syn match chaiscriptOperator ":" 65 syn match chaiscriptOperator ":"
66 66
67 " Comments 67 " Comments
68 syn match chaiscriptComment "//.*$" contains=@Spell 68 syn match chaiscriptComment "//.*$" contains=@Spell
69 syn region chaiscriptComment matchgroup=chaiscriptComment start="/\*" end="\*/" contains=@Spell 69 syn region chaiscriptComment matchgroup=chaiscriptComment start="/\*" end="\*/" contains=@Spell