dkearns | 6986644 | 2023-11-22 05:43:40 +1100 | [diff] [blame] | 1 | " Vim Keymap file for syntax testing |
| 2 | |
| 3 | " Maintainer: Doug Kearns <dougkearns@gmail.com> |
| 4 | " Last Changed: 2023 Nov 21 |
| 5 | |
| 6 | scriptencoding utf-8 |
| 7 | |
| 8 | let b:keymap_name = "syntax-test" |
| 9 | |
| 10 | loadkeymap |
| 11 | |
| 12 | " Line comment |
| 13 | |
| 14 | " Another line comment |
| 15 | |
| 16 | a A Basic mapping |
| 17 | 'a á More than one char in first column |
| 18 | |
| 19 | " Special notation |
| 20 | <char-62> B Special notation allowed in LHS - decimal |
| 21 | c <char-0103> Special notation allowed in RHS - octal |
| 22 | <char-0x0064> <char-0x0044> Special notation allowed in LHS and RHS - hexadecimal |
| 23 | |
| 24 | " Vim-script comment characters |
| 25 | # <char-0x00a3> Line should not match as a Vim9-script comment |
| 26 | \" “ Line should not match as a legacy-script comment |