comparison src/testdir/test_timers.vim @ 17164:7927cf327396 v8.1.1581

patch 8.1.1581: shared functions for testing are disorganised commit https://github.com/vim/vim/commit/7a39dd7f00239059ce34660611589b26126a550c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 23 00:50:15 2019 +0200 patch 8.1.1581: shared functions for testing are disorganised Problem: Shared functions for testing are disorganised. Solution: Group finctions in script files. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/4573)
author Bram Moolenaar <Bram@vim.org>
date Sun, 23 Jun 2019 01:00:05 +0200
parents 3fd0765f454f
children a5c3d374e1d3
comparison
equal deleted inserted replaced
17163:f5a43b78de92 17164:7927cf327396
2 2
3 source check.vim 3 source check.vim
4 CheckFeature timers 4 CheckFeature timers
5 5
6 source shared.vim 6 source shared.vim
7 source screendump.vim 7 source term_util.vim
8 8
9 func MyHandler(timer) 9 func MyHandler(timer)
10 let g:val += 1 10 let g:val += 1
11 endfunc 11 endfunc
12 12