comparison src/testdir/test_edit.vim @ 33223:def9fc5c92d1 v9.0.1886

patch 9.0.1886: Various Typos Commit: https://github.com/vim/vim/commit/ee17b6f70d382ec6c5d8d27b56c4e84106ac8c55 Author: Christian Brabandt <cb@256bit.org> Date: Sat Sep 9 11:23:50 2023 +0200 patch 9.0.1886: Various Typos Problem: Various Typos Solution: Fix Typos This is a collection of typo related commits. closes: #12753 closes: #13016 Co-authored-by: Adri Verhoef <a3@a3.xs4all.nl> Co-authored-by: zeertzjq <zeertzjq@outlook.com> Co-authored-by: Viktor Sz?pe <viktor@szepe.net> Co-authored-by: nuid64 <lvkuzvesov@proton.me> Co-authored-by: Meng Xiangzhuo <aumo@foxmail.com> Co-authored-by: Dominique Pell? <dominique.pelle@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 09 Sep 2023 11:45:04 +0200
parents baafb135b0cb
children 8687845c326c
comparison
equal deleted inserted replaced
33222:1e37f623c551 33223:def9fc5c92d1
1217 let &ww = _ww 1217 let &ww = _ww
1218 bw! 1218 bw!
1219 endfunc 1219 endfunc
1220 1220
1221 func Test_edit_MOUSE() 1221 func Test_edit_MOUSE()
1222 " This is a simple test, since we not really using the mouse here 1222 " This is a simple test, since we're not really using the mouse here
1223 CheckFeature mouse 1223 CheckFeature mouse
1224 10new 1224 10new
1225 call setline(1, range(1, 100)) 1225 call setline(1, range(1, 100))
1226 call cursor(1, 1) 1226 call cursor(1, 1)
1227 call assert_equal(1, line('w0')) 1227 call assert_equal(1, line('w0'))
1795 call assert_equal(['one', 'two'], getline(1, '$')) 1795 call assert_equal(['one', 'two'], getline(1, '$'))
1796 call assert_match("Conversion with 'charconvert' failed", msg) 1796 call assert_match("Conversion with 'charconvert' failed", msg)
1797 close! 1797 close!
1798 set charconvert& 1798 set charconvert&
1799 1799
1800 " 'charconvert' function doesn't create a output file 1800 " 'charconvert' function doesn't create an output file
1801 func Cconv1() 1801 func Cconv1()
1802 endfunc 1802 endfunc
1803 set charconvert=Cconv1() 1803 set charconvert=Cconv1()
1804 new 1804 new
1805 redir => msg 1805 redir => msg