diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-02-27 12:29:20 +0100 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-02-28 15:14:03 +0100 |
commit | cf07f2baabd3a1a072102e0cacb6d70509ada044 (patch) | |
tree | 52b6edae4abe20b7c65e3967a335cec72a229d10 /src/nvim/normal.c | |
parent | 2c9fbe34b20266ef5ab54f6ed14fb38eef60430d (diff) | |
download | rneovim-cf07f2baabd3a1a072102e0cacb6d70509ada044.tar.gz rneovim-cf07f2baabd3a1a072102e0cacb6d70509ada044.tar.bz2 rneovim-cf07f2baabd3a1a072102e0cacb6d70509ada044.zip |
feat(edit)!: remove old c implementation of hebrew keymap
This feature has long been obsolete. The 'keymap' option can be used
to support language keymaps, including hebrew and hebrewp (phonetic
mapping). There is no need to keep the old c code with hardcoded
keymaps for some languages.
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index ef8f6e7b0f..f7c99d5991 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -769,10 +769,6 @@ static void normal_get_additional_char(NormalState *s) // adjust chars > 127, except after "tTfFr" commands LANGMAP_ADJUST(*cp, !lang); - // adjust Hebrew mapped char - if (p_hkmap && lang && KeyTyped) { - *cp = hkmap(*cp); - } } // When the next character is CTRL-\ a following CTRL-N means the |