blob: 029bc768ae393be257f9652edb50d1d4de3a7514 [file] [log] [blame]
Doug Kearns080ba2c2024-07-17 19:35:02 +02001" Vim Keymap file for syntax testing
2
3scriptencoding utf-8
4
5let b:keymap_name = "syntax-test"
6
7loadkeymap
8
9" Line comment
10
11 " Another line comment
12
13a A Basic mapping
14'a á More than one char in first column
15
16" Special notation
17<char-62> B Special notation allowed in LHS - decimal
18c <char-0103> Special notation allowed in RHS - octal
19<char-0x0064> <char-0x0044> Special notation allowed in LHS and RHS - hexadecimal
20
21" Vim-script comment characters
dkearns69866442023-11-22 05:43:40 +110022# <char-0x00a3> Line should not match as a Vim9-script comment
Doug Kearns080ba2c2024-07-17 19:35:02 +020023\" “ Line should not match as a legacy-script comment
dkearns04e53632024-04-11 06:18:37 +100024: " Line should not match as a legacy-script comment