diff options
-rw-r--r-- | src/nvim/testdir/test_edit.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_edit.vim b/src/nvim/testdir/test_edit.vim index ae0404ea6c..daa86a2f80 100644 --- a/src/nvim/testdir/test_edit.vim +++ b/src/nvim/testdir/test_edit.vim @@ -1324,6 +1324,10 @@ func Test_edit_quit() endfunc func Test_edit_complete_very_long_name() + if !has('unix') + " Long directory names only work on Unix. + return + endif let save_columns = &columns set columns=5000 call assert_equal(5000, &columns) |