aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-07-15 14:50:10 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-07-15 15:21:39 +0800
commit7b5b7b3cc6306e9313dcf677f212cb132bd38aa0 (patch)
tree86affd4c94975a370bebbff9f119db2ae785bb8e /src/nvim/testdir
parent9777907467b29e890556db287b6a9995c0024896 (diff)
downloadrneovim-7b5b7b3cc6306e9313dcf677f212cb132bd38aa0.tar.gz
rneovim-7b5b7b3cc6306e9313dcf677f212cb132bd38aa0.tar.bz2
rneovim-7b5b7b3cc6306e9313dcf677f212cb132bd38aa0.zip
vim-patch:8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Problem: FEAT_WINDOWS adds a lot of #ifdefs while it is nearly always enabled and only adds 7% to the binary size of the tiny build. Solution: Graduate FEAT_WINDOWS. https://github.com/vim/vim/commit/4033c55eca575777718c0701e26635a0cc47d907
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_normal.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_normal.vim b/src/nvim/testdir/test_normal.vim
index d1d914d0b6..2d5b66df26 100644
--- a/src/nvim/testdir/test_normal.vim
+++ b/src/nvim/testdir/test_normal.vim
@@ -2656,7 +2656,7 @@ func Test_normal49_counts()
endfunc
func Test_normal50_commandline()
- if !has("timers") || !has("cmdline_hist") || !has("vertsplit")
+ if !has("timers") || !has("cmdline_hist")
return
endif
func! DoTimerWork(id)