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/options.lua | |
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/options.lua')
-rw-r--r-- | src/nvim/options.lua | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 387ccd0888..a4ee114f39 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -55,8 +55,6 @@ return { full_name='aleph', abbreviation='al', short_desc=N_("ASCII code of the letter Aleph (Hebrew)"), type='number', scope={'global'}, - redraw={'curswant'}, - varname='p_aleph', defaults={if_true=224} }, { @@ -1071,16 +1069,16 @@ return { }, { full_name='hkmap', abbreviation='hk', - short_desc=N_("Hebrew keyboard mapping"), + short_desc=N_("No description"), type='bool', scope={'global'}, - varname='p_hkmap', + varname='p_force_off', defaults={if_true=false} }, { full_name='hkmapp', abbreviation='hkp', - short_desc=N_("phonetic Hebrew keyboard mapping"), + short_desc=N_("No description"), type='bool', scope={'global'}, - varname='p_hkmapp', + varname='p_force_off', defaults={if_true=false} }, { |