diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-06-04 06:07:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-04 06:07:20 +0800 |
commit | e20c5fba2c77b7e7ea93363abc987d913e5f9f58 (patch) | |
tree | f7ae4d4ce58e2ae5935f4d42266f3da1fccf848d /test/old/testdir/test_normal.vim | |
parent | 5aa9906676f3ad040b0ccb75eb5fd560def1e0ec (diff) | |
download | rneovim-e20c5fba2c77b7e7ea93363abc987d913e5f9f58.tar.gz rneovim-e20c5fba2c77b7e7ea93363abc987d913e5f9f58.tar.bz2 rneovim-e20c5fba2c77b7e7ea93363abc987d913e5f9f58.zip |
vim-patch:partial:8.2.3637: typos in test files (#29172)
Problem: Typos in test files.
Solution: Correct the typos. (Dominique Pellé, closes vim/vim#9175)
https://github.com/vim/vim/commit/923dce2b07ff185c0ef661f3eca47bc17655f01b
Co-authored-by: Dominique Pelle <dominique.pelle@gmail.com>
Diffstat (limited to 'test/old/testdir/test_normal.vim')
-rw-r--r-- | test/old/testdir/test_normal.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/old/testdir/test_normal.vim b/test/old/testdir/test_normal.vim index a2ef07193d..47d3e67c5e 100644 --- a/test/old/testdir/test_normal.vim +++ b/test/old/testdir/test_normal.vim @@ -1522,7 +1522,7 @@ func Test_normal18_z_fold() norm! j call assert_equal('52', getline('.')) - " zA on a opened fold when foldenable is not set + " zA on an opened fold when foldenable is not set 50 set nofoldenable norm! zA @@ -1878,7 +1878,7 @@ func Test_normal23_K() let not_gnu_man = has('mac') || has('bsd') if not_gnu_man - " In MacOS and BSD, the option for specifying a pager is different + " In macOS and BSD, the option for specifying a pager is different set keywordprg=man\ -P\ cat else set keywordprg=man\ --pager=cat @@ -2727,7 +2727,7 @@ func Test_normal33_g_cmd2() call assert_equal('foo first line', getline(1)) set virtualedit& - " Test for aboring a g command using CTRL-\ CTRL-G + " Test for aborting a g command using CTRL-\ CTRL-G exe "normal! g\<C-\>\<C-G>" call assert_equal('foo first line', getline('.')) |