annotate runtime/keymap/turkish-q.vim @ 34359:0447bf3a88a5 v9.1.0110

patch 9.1.0110: filetype: add 'Config.in' filetype detection Commit: https://github.com/vim/vim/commit/5f20f050efed3431beaf85739f0113e9ef0abd8e Author: Brandon Maier <brandon.maier@collins.com> Date: Wed Feb 14 22:30:06 2024 +0100 patch 9.1.0110: filetype: add 'Config.in' filetype detection The 'Config.in' file type is for Buildroot configuration files. Buildroot Config.in files use the same Kconfig backend as the Linux kernel's Kconfig files. Buildroot also has other filename variants that follow "Config.in.*", they are used to distinguish multiple Config.in files in the same directory. See https://buildroot.org/downloads/manual/manual.html#_literal_config_in_literal_file closes: #14038 Signed-off-by: Brandon Maier <brandon.maier@collins.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 14 Feb 2024 22:45:02 +0100
parents bbca88cd13d5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21676
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim keymap file for Turkish Q layout
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Maintainer: Emir SARI <bitigchi@me.com>
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Last changed: 5 August 2020
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 scriptencoding utf-8
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 let b:keymap_name = "tr-q"
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 loadkeymap
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 \> Ç LATIN CAPITAL LETTER C WITH CEDILLA
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 \{ Ğ LATIN CAPITAL LETTER G WITH BREVE
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 \" İ LATIN CAPITAL LETTER I WITH DOT ABOVE
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 \< Ö LATIN CAPITAL LETTER O WITH DIAERESIS
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 \: Ş LATIN CAPITAL LETTER S WITH CEDILLA
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 \} Ü LATIN CAPITAL LETTER U WITH DIAERESIS
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 ± é LATIN SMALL LETTER E WITH ACUTE
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 @ ' APOSTROPHE
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 # ^ CIRCUMFLEX ACCENT
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 $ + PLUS SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 ^ & AMPERSAND
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 & / SOLIDUS
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 * ( LEFT PARENTHESIS
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 ( ) RIGHT PARENTHESIS
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 ) = EQUAL SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 _ ? QUESTION MARK
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 + _ LOW LINE
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 ~ > GREATER-THAN SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 | ; SEMICOLON
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 ? : COLON
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 \. ç LATIN SMALL LETTER C WITH CEDILLA
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32 \[ ğ LATIN SMALL LETTER G WITH BREVE
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33 \' i LATIN SMALL LETTER I
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34 \, ö LATIN SMALL LETTER O WITH DIAERESIS
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35 \; ş LATIN SMALL LETTER S WITH CEDILLA
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36 \] ü LATIN SMALL LETTER U WITH DIAERESIS
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37 i ı LATIN SMALL LETTER DOTLESS I
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
38
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
39 § " QUOTATION MARK
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
40 - * ASTERISK
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
41 = - HYPHEN-MINUS
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
42 \\ , COMMA
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
43 \/ . FULL STOP
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
44 ` < LESS-THAN SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
45
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
46 ™ £ POUND SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
47 £ # NUMBER SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
48 ¢ $ DOLLAR SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
49 ∞ ½ VULGAR FRACTION ONE HALF
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
50 ¶ { LEFT CURLY BRACKET
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
51 • [ LEFT SQUARE BRACKET
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
52 ª ] RIGHT SQUARE BRACKET
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
53 º } RIGHT CURLY BRACKET
21991
bbca88cd13d5 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 21676
diff changeset
54 – \\ REVERSE SOLIDUS
21676
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
55 ≠ | VERTICAL LINE
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
56 œ @ COMMERCIAL AT
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
57 ´ € EURO SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
58 † ₺ TURKISH LIRA SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
59 ¥ ¥ YEN SIGN
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
60 ‘ ~ TILDE
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
61 … ´ ACUTE ACCENT
1b345fb68ae3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
62 « ` GRAVE ACCENT