annotate runtime/syntax/squirrel.vim @ 29234:96ff6c230a66 v8.2.5136

patch 8.2.5136: debugger test fails when run with valgrind Commit: https://github.com/vim/vim/commit/e366ed4f2c6fa8cb663f1b9599b39d57ddbd8a2a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 19 20:13:56 2022 +0100 patch 8.2.5136: debugger test fails when run with valgrind Problem: Debugger test fails when run with valgrind. Solution: Wait longer when using valgrind.
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Jun 2022 21:15:03 +0200
parents c725b8e17f1f
children c62bca3b8d82
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26438
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: squirrel
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Current Maintainer: Matt Dunford (zenmatic@gmail.com)
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " URL: https://github.com/zenmatic/vim-syntax-squirrel
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 " Last Change: 2021 Nov 28
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 " http://squirrel-lang.org/
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 " quit when a syntax file was already loaded
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 if exists("b:current_syntax")
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 finish
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 endif
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 " inform C syntax that the file was included from cpp.vim
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 let b:filetype_in_cpp_family = 1
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 " Read the C syntax to start with
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 runtime! syntax/c.vim
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 unlet b:current_syntax
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 " squirrel extensions
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 syn keyword squirrelStatement delete this in yield resume base clone
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 syn keyword squirrelAccess local
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 syn keyword cConstant null
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 syn keyword squirrelModifier static
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 syn keyword squirrelType bool instanceof typeof
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 syn keyword squirrelExceptions throw try catch
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 syn keyword squirrelStructure class function extends constructor
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 syn keyword squirrelBoolean true false
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30 syn keyword squirrelRepeat foreach
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32 syn region squirrelMultiString start='@"' end='"$' end='";$'me=e-1
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34 syn match squirrelShComment "^\s*#.*$"
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36 " Default highlighting
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37 hi def link squirrelAccess squirrelStatement
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
38 hi def link squirrelExceptions Exception
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
39 hi def link squirrelStatement Statement
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
40 hi def link squirrelModifier Type
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
41 hi def link squirrelType Type
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
42 hi def link squirrelStructure Structure
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
43 hi def link squirrelBoolean Boolean
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
44 hi def link squirrelMultiString String
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
45 hi def link squirrelRepeat cRepeat
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
46 hi def link squirrelShComment Comment
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
47
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
48 let b:current_syntax = "squirrel"
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
49
c725b8e17f1f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
50 " vim: ts=8