diff options
| author | bfredl <bjorn.linse@gmail.com> | 2023-02-28 19:38:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-28 19:38:38 +0100 |
| commit | 8bd0a9c360e94b2702cbccbde838a2a7e4f8ccf1 (patch) | |
| tree | 1c64f63f86eabb86e4fd63984408aad4ef578808 /src/nvim/testdir/test_paste.vim | |
| parent | f289fc4abb8e7c02acfd2dfc834cc6447193a67e (diff) | |
| parent | cf07f2baabd3a1a072102e0cacb6d70509ada044 (diff) | |
| download | rneovim-8bd0a9c360e94b2702cbccbde838a2a7e4f8ccf1.tar.gz rneovim-8bd0a9c360e94b2702cbccbde838a2a7e4f8ccf1.tar.bz2 rneovim-8bd0a9c360e94b2702cbccbde838a2a7e4f8ccf1.zip | |
Merge pull request #22429 from bfredl/hkmap
feat(edit)!: remove old c implementation of hebrew keymap
Diffstat (limited to 'src/nvim/testdir/test_paste.vim')
| -rw-r--r-- | src/nvim/testdir/test_paste.vim | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_paste.vim b/src/nvim/testdir/test_paste.vim index dad3c2c6a0..923f4f42a6 100644 --- a/src/nvim/testdir/test_paste.vim +++ b/src/nvim/testdir/test_paste.vim @@ -20,7 +20,8 @@ endfunc func Test_paste_opt_restore() set autoindent expandtab ruler showmatch if has('rightleft') - set revins hkmap + " set hkmap + set revins endif set smarttab softtabstop=3 textwidth=27 wrapmargin=12 if has('vartabs') @@ -33,7 +34,7 @@ func Test_paste_opt_restore() call assert_false(&expandtab) if has('rightleft') call assert_false(&revins) - call assert_false(&hkmap) + " call assert_false(&hkmap) endif call assert_false(&ruler) call assert_false(&showmatch) @@ -51,7 +52,7 @@ func Test_paste_opt_restore() call assert_true(&expandtab) if has('rightleft') call assert_true(&revins) - call assert_true(&hkmap) + " call assert_true(&hkmap) endif call assert_true(&ruler) call assert_true(&showmatch) |