Doug Kearns | 080ba2c | 2024-07-17 19:35:02 +0200 | [diff] [blame^] | 1 | " Vim Keymap file for syntax testing |
| 2 | |
| 3 | scriptencoding utf-8 |
| 4 | |
| 5 | let b:keymap_name = "syntax-test" |
| 6 | |
| 7 | loadkeymap |
| 8 | |
| 9 | " Line comment |
| 10 | |
| 11 | " Another line comment |
| 12 | |
| 13 | a 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 |
| 18 | c <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 |
dkearns | 6986644 | 2023-11-22 05:43:40 +1100 | [diff] [blame] | 22 | # <char-0x00a3> Line should not match as a Vim9-script comment |
Doug Kearns | 080ba2c | 2024-07-17 19:35:02 +0200 | [diff] [blame^] | 23 | \" “ Line should not match as a legacy-script comment |
dkearns | 04e5363 | 2024-04-11 06:18:37 +1000 | [diff] [blame] | 24 | : " Line should not match as a legacy-script comment |