1
0
forked from aniani/vim

patch 8.2.3637: typos in test files

Problem:    Typos in test files.
Solution:   Correct the typos. (Dominique Pellé, closes #9175)
This commit is contained in:
Dominique Pelle
2021-11-21 11:36:04 +00:00
committed by Bram Moolenaar
parent 2c23670300
commit 923dce2b07
21 changed files with 39 additions and 38 deletions

View File

@@ -1243,7 +1243,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
@@ -1601,7 +1601,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
@@ -2394,7 +2394,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('.'))