diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-12-16 14:45:13 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-16 14:45:13 +0000 |
commit | 52797bae1710621926c03a2611c40a692c96fb44 (patch) | |
tree | 3cf4bedc9079f69fb3adb8ebf61361451fa04c1a /src/testdir/test_edit.vim | |
parent | 0e6adf8a29d5c2c96c42cc7157f71bf22c2ad471 (diff) | |
download | vim-git-52797bae1710621926c03a2611c40a692c96fb44.tar.gz |
patch 8.2.3825: various comments could be improvedv8.2.3825
Problem: Various comments could be improved.
Solution: Improve the comments.
Diffstat (limited to 'src/testdir/test_edit.vim')
-rw-r--r-- | src/testdir/test_edit.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim index 9e17636d7..46a475221 100644 --- a/src/testdir/test_edit.vim +++ b/src/testdir/test_edit.vim @@ -1326,6 +1326,7 @@ func Test_edit_forbidden() call assert_fails(':Sandbox', 'E48:') delcom Sandbox call assert_equal(['a'], getline(1,'$')) + " 2) edit with textlock set fu! DoIt() call feedkeys("i\<del>\<esc>", 'tnix') @@ -1345,6 +1346,7 @@ func Test_edit_forbidden() catch /^Vim\%((\a\+)\)\=:E117/ " catch E117: unknown function endtry au! InsertCharPre + " 3) edit when completion is shown fun! Complete(findstart, base) if a:findstart @@ -1362,6 +1364,7 @@ func Test_edit_forbidden() endtry delfu Complete set completefunc= + if has("rightleft") && exists("+fkmap") " 4) 'R' when 'fkmap' and 'revins' is set. set revins fkmap |