forked from aniani/vim
patch 7.4.1844
Problem: Using old function name in comment. More functions should start with test_. Solution: Rename function in comment. (Higashi Higashi) Rename disable_char_avail_for_testing() to test_disable_char_avail(). And alloc_fail() to test_alloc_fail().
This commit is contained in:
@@ -44,9 +44,9 @@ func Test_curswant_with_autocommand()
|
||||
new
|
||||
call setline(1, ['func()', '{', '}', '----'])
|
||||
autocmd! CursorMovedI * call s:Highlight_Matching_Pair()
|
||||
call disable_char_avail_for_testing(1)
|
||||
call test_disable_char_avail(1)
|
||||
exe "normal! 3Ga\<Down>X\<Esc>"
|
||||
call disable_char_avail_for_testing(0)
|
||||
call test_disable_char_avail(0)
|
||||
call assert_equal('-X---', getline(4))
|
||||
autocmd! CursorMovedI *
|
||||
quit!
|
||||
|
Reference in New Issue
Block a user