annotate runtime/syntax/lc.vim @ 34072:6d9e20b403e8 v9.1.0005

patch 9.1.0005: OpenVMS does not support python3 and xterm_save Commit: https://github.com/vim/vim/commit/4d8cb683b1543ec02563cdd2d068ce5f82f90539 Author: Zoltan Arpadffy <zoltan.arpadffy@gmail.com> Date: Thu Jan 4 21:01:13 2024 +0100 patch 9.1.0005: OpenVMS does not support python3 and xterm_save Problem: OpenVMS build does not support python3 and xterm_save Solution: Enable python3 + xterm_save feature, fix style issues (Zoltan Arpadffy) closes: #13812 Signed-off-by: Zoltan Arpadffy <zoltan.arpadffy@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 04 Jan 2024 21:15:05 +0100
parents cc751d944b7e
children 7c7432a53a6c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31885
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: Elsa
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Miles Glapa-Grossklag <miles@glapa-grossklag.com>
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Last Change: 2023-01-29
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists('b:current_syntax')
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 " Keywords
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 syntax keyword elsaKeyword let eval
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 syntax match elsaKeyword "\v:"
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 highlight link elsaKeyword Keyword
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 " Comments
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 setlocal commentstring=--%s
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 syntax match elsaComment "\v--.*$"
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 highlight link elsaComment Comment
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 " Operators
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 syntax match elsaOperator "\v\="
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 syntax match elsaOperator "\v\=[abd*~]\>"
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 syntax match elsaOperator "\v-\>"
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 syntax match elsaOperator "\v\\"
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 highlight link elsaOperator Operator
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 " Definitions
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 syntax match elsaConstant "\v[A-Z]+[A-Z_0-9]*"
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 highlight link elsaConstant Constant
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30
cc751d944b7e Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 let b:current_syntax = 'elsa'