aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.lua
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2021-11-01 00:28:00 +0000
committerSean Dewar <seandewar@users.noreply.github.com>2021-11-26 18:53:10 +0000
commit39776d1a6513e33a33addb69deae72ab2ecafef4 (patch)
tree9120486becad2853c52adc59a00bd31bd55be20b /src/nvim/eval.lua
parent0f4510cb1a48c4c4d7b23a45f57d087329d4364d (diff)
downloadrneovim-39776d1a6513e33a33addb69deae72ab2ecafef4.tar.gz
rneovim-39776d1a6513e33a33addb69deae72ab2ecafef4.tar.bz2
rneovim-39776d1a6513e33a33addb69deae72ab2ecafef4.zip
vim-patch:8.1.2011: more functions can be used as methods
Problem: More functions can be used as methods. Solution: Make various functions usable as a method. Make the window command test faster. https://github.com/vim/vim/commit/ce90e36f5969e733a0a919f1736453332c33aad6 test_* functions in the patch are N/A as they modify internal state. Include test changes for test_ignore_error and test_feedinput (though they aren't run). Other changed tests were excluded from previous patches, except test_termcodes.vim, which hasn't been ported yet.
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r--src/nvim/eval.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua
index 2a12a4d119..d685387995 100644
--- a/src/nvim/eval.lua
+++ b/src/nvim/eval.lua
@@ -374,11 +374,11 @@ return {
synstack={args=2},
system={args={1, 2}, base=1},
systemlist={args={1, 3}, base=1},
- tabpagebuflist={args={0, 1}},
+ tabpagebuflist={args={0, 1}, base=1},
tabpagenr={args={0, 1}},
- tabpagewinnr={args={1, 2}},
+ tabpagewinnr={args={1, 2}, base=1},
tagfiles={},
- taglist={args={1, 2}},
+ taglist={args={1, 2}, base=1},
tan={args=1, base=1, func="float_op_wrapper", data="&tan"},
tanh={args=1, base=1, func="float_op_wrapper", data="&tanh"},
tempname={},