annotate runtime/syntax/lc.vim @ 33725:5af7b93fc4f5 v9.0.2092

patch 9.0.2092: tests: failure in test_arabic Commit: https://github.com/vim/vim/commit/2a94e9879283c55b162cf4e6d9ac7e0b0c35bc97 Author: Christian Brabandt <cb@256bit.org> Date: Sun Nov 5 19:17:10 2023 +0100 patch 9.0.2092: tests: failure in test_arabic Problem: tests: failure in test_arabic Solution: adjust the test for the changed arabic keymap Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 05 Nov 2023 19:30:03 +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'