From 4ca14b310cc385bd7ebb6e478ee5cc249f26556e Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 30 Mar 2022 18:34:35 +0800 Subject: vim-patch:8.2.4349: FileChangedShell test fails on MS-Windows Problem: FileChangedShell test fails on MS-Windows. Solution: Skip the test on MS-Windows. https://github.com/vim/vim/commit/c9e3187d053dcef03d11915b06be0c78ab45bc75 --- src/nvim/testdir/test_filechanged.vim | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nvim/testdir') diff --git a/src/nvim/testdir/test_filechanged.vim b/src/nvim/testdir/test_filechanged.vim index 06ccd6e85f..e9ba71c12d 100644 --- a/src/nvim/testdir/test_filechanged.vim +++ b/src/nvim/testdir/test_filechanged.vim @@ -142,6 +142,8 @@ endfunc func Test_FileChangedShell_edit_dialog() throw 'Skipped: requires a UI to be active' CheckNotGui + " FIXME: why does this not work on MS-Windows? + CheckUnix new Xchanged_r call setline(1, 'reload this') -- cgit From 06cf205aced6b0d5b7ae919665f2ab3fd81ab960 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 30 Mar 2022 18:30:36 +0800 Subject: vim-patch:8.2.4649: various formatting problems Problem: Various formatting problems. Solution: Improve the code formatting. https://github.com/vim/vim/commit/b4ad3b0deac12674a7773311890b48fd39c6807c --- src/nvim/testdir/test_filechanged.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/nvim/testdir') diff --git a/src/nvim/testdir/test_filechanged.vim b/src/nvim/testdir/test_filechanged.vim index e9ba71c12d..8e1cb2c3ee 100644 --- a/src/nvim/testdir/test_filechanged.vim +++ b/src/nvim/testdir/test_filechanged.vim @@ -142,8 +142,7 @@ endfunc func Test_FileChangedShell_edit_dialog() throw 'Skipped: requires a UI to be active' CheckNotGui - " FIXME: why does this not work on MS-Windows? - CheckUnix + CheckUnix " Using low level feedkeys() does not work on MS-Windows. new Xchanged_r call setline(1, 'reload this') -- cgit