tkmap.h: do not mirror the parentheses - neatvi - [fork] simple vi-type editor with UTF-8 support
 (HTM) git clone git://src.adamsgaard.dk/neatvi
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit dee1eb07aca89fd5aa037ff4736f74ba9f0e8c5c
 (DIR) parent 330453e1a6cd79f6c85ddc7a454f37c784b1ae9a
 (HTM) Author: Ali Gholami Rudi <ali@rudi.ir>
       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(-)
       ---
 (DIR) 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'] = "ء",
       -        ['<'] = ">",
       -        ['>'] = "<",
       +        ['<'] = "<",
       +        ['>'] = ">",
                ['?'] = "؟",
                ['|'] = "|",
        };