| tkmap.h: do not mirror the parentheses - neatvi - [fork] simple vi-type editor … | |
| git clone git://src.adamsgaard.dk/neatvi | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit dee1eb07aca89fd5aa037ff4736f74ba9f0e8c5c | |
| parent 330453e1a6cd79f6c85ddc7a454f37c784b1ae9a | |
| Author: Ali Gholami Rudi <[email protected]> | |
| Date: Sun, 10 May 2015 19:00:59 +0430 | |
| kmap.h: do not mirror the parentheses | |
| Diffstat: | |
| M kmap.h | 16 ++++++++-------- | |
| 1 file changed, 8 insertions(+), 8 deletions(-) | |
| --- | |
| diff --git a/kmap.h b/kmap.h | |
| t@@ -57,8 +57,8 @@ static char *kmap_farsi[256] = { | |
| ['^'] = "×", | |
| ['&'] = "،", | |
| ['*'] = "*", | |
| - ['('] = ")", | |
| - [')'] = "(", | |
| + ['('] = "(", | |
| + [')'] = ")", | |
| ['_'] = "ـ", | |
| ['+'] = "+", | |
| ['Q'] = "ْ", | |
| t@@ -69,10 +69,10 @@ static char *kmap_farsi[256] = { | |
| ['Y'] = "ِ", | |
| ['U'] = "َ", | |
| ['I'] = "ّ", | |
| - ['O'] = "]", | |
| - ['P'] = "[", | |
| - ['{'] = "}", | |
| - ['}'] = "{", | |
| + ['O'] = "[", | |
| + ['P'] = "]", | |
| + ['{'] = "{", | |
| + ['}'] = "}", | |
| ['A'] = "ؤ", | |
| ['S'] = "ئ", | |
| ['D'] = "ي", | |
| t@@ -91,8 +91,8 @@ static char *kmap_farsi[256] = { | |
| ['B'] = "", | |
| ['N'] = "ٔ", | |
| ['M'] = "ء", | |
| - ['<'] = ">", | |
| - ['>'] = "<", | |
| + ['<'] = "<", | |
| + ['>'] = ">", | |
| ['?'] = "؟", | |
| ['|'] = "|", | |
| }; |