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/testdir/test_startup.vim | |
| 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/testdir/test_startup.vim')
| -rw-r--r-- | src/nvim/testdir/test_startup.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim index 1ee1d0dfe3..8216b1a894 100644 --- a/src/nvim/testdir/test_startup.vim +++ b/src/nvim/testdir/test_startup.vim @@ -389,7 +389,7 @@ endfunc " Test the -A, -F and -H arguments (Arabic, Farsi and Hebrew modes). func Test_A_F_H_arg() let after =<< trim [CODE] - call writefile([&rightleft, &arabic, 0, &hkmap], "Xtestout") + call writefile([&rightleft, &arabic, 0, &hkmap, &keymap], "Xtestout") qall [CODE] @@ -397,17 +397,17 @@ func Test_A_F_H_arg() " 'encoding' is not utf-8. if has('arabic') && &encoding == 'utf-8' && RunVim([], after, '-e -s -A') let lines = readfile('Xtestout') - call assert_equal(['1', '1', '0', '0'], lines) + call assert_equal(['1', '1', '0', '0', 'arabic'], lines) endif if has('farsi') && RunVim([], after, '-F') let lines = readfile('Xtestout') - call assert_equal(['1', '0', '1', '0'], lines) + call assert_equal(['1', '0', '1', '0', '???'], lines) endif if has('rightleft') && RunVim([], after, '-H') let lines = readfile('Xtestout') - call assert_equal(['1', '0', '0', '1'], lines) + call assert_equal(['1', '0', '0', '0', 'hebrew'], lines) endif call delete('Xtestout') |