Mercurial > vim
view src/testdir/test_autoload.vim @ 17518:bfc5a2962f38 v8.1.1757
patch 8.1.1757: text added with appendbufline() isn't displayed
commit https://github.com/vim/vim/commit/298466629119eda501cfdf7824797f05045e67ca
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jul 27 17:39:15 2019 +0200
patch 8.1.1757: text added with appendbufline() isn't displayed
Problem: Text added with appendbufline() to another buffer isn't displayed.
Solution: Update topline. (partly by Christian Brabandt, closes https://github.com/vim/vim/issues/4718)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 27 Jul 2019 17:45:08 +0200 |
parents | 41e46caf1030 |
children | 9ffec4eb8d33 |
line wrap: on
line source
" Tests for autoload set runtimepath=./sautest func Test_autoload_dict_func() let g:loaded_foo_vim = 0 let g:called_foo_bar_echo = 0 call g:foo#bar.echo() call assert_equal(1, g:loaded_foo_vim) call assert_equal(1, g:called_foo_bar_echo) endfunc func Test_source_autoload() let g:loaded_sourced_vim = 0 source sautest/autoload/sourced.vim call assert_equal(1, g:loaded_sourced_vim) endfunc