diff options
| author | Björn Linse <bjorn.linse@gmail.com> | 2016-11-01 10:54:32 +0100 |
|---|---|---|
| committer | James McCoy <jamessan@jamessan.com> | 2016-12-12 10:17:35 -0500 |
| commit | 0f681c80e1e9c9060394365dae12f8ebd5736176 (patch) | |
| tree | b5e2e6ddb9d45da26a14d78e09cd5f6ee56743fa /src/nvim/testdir | |
| parent | a21c687661eac61702fe492264a3c9036bc62f41 (diff) | |
| download | rneovim-0f681c80e1e9c9060394365dae12f8ebd5736176.tar.gz rneovim-0f681c80e1e9c9060394365dae12f8ebd5736176.tar.bz2 rneovim-0f681c80e1e9c9060394365dae12f8ebd5736176.zip | |
Make partials work with jobs, timers, and dictwatchers.
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_timers.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_timers.vim b/src/nvim/testdir/test_timers.vim index 136f32a80e..d92cbe6897 100644 --- a/src/nvim/testdir/test_timers.vim +++ b/src/nvim/testdir/test_timers.vim @@ -41,6 +41,7 @@ func Test_with_partial_callback() function s:meow.bite(...) let s:val += 1 endfunction + call timer_start(50, s:meow.bite) sleep 200m call assert_equal(1, s:val) |