diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-23 22:32:38 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-03-23 22:42:52 -0400 |
commit | b951d1ff1d52072912a8d65f654a7899fffb39d8 (patch) | |
tree | 9a4c3564973c5c76504688485f32c3804143a986 | |
parent | f6585cae50a7f1aef8544a6904bb7e986126283f (diff) | |
download | rneovim-b951d1ff1d52072912a8d65f654a7899fffb39d8.tar.gz rneovim-b951d1ff1d52072912a8d65f654a7899fffb39d8.tar.bz2 rneovim-b951d1ff1d52072912a8d65f654a7899fffb39d8.zip |
vim-patch:8.2.0402: setting local instead of global flag
Problem: Setting local instead of global flag.
Solution: Prepend "g:" to "test_is_flaky".
https://github.com/vim/vim/commit/30d53e2c11e670845830bdfc29bf8c1615df61a8
-rw-r--r-- | src/nvim/testdir/test_autocmd.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_autocmd.vim b/src/nvim/testdir/test_autocmd.vim index 107428a62e..3401e791c9 100644 --- a/src/nvim/testdir/test_autocmd.vim +++ b/src/nvim/testdir/test_autocmd.vim @@ -1369,7 +1369,7 @@ func Test_Changed_FirstTime() CheckFeature terminal CheckNotGui " Starting a terminal to run Vim is always considered flaky. - let test_is_flaky = 1 + let g:test_is_flaky = 1 " Prepare file for TextChanged event. call writefile([''], 'Xchanged.txt') |