aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.lua
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-06-17 14:42:51 +0200
committerDaniel Hahler <git@thequod.de>2019-06-17 23:43:26 +0200
commit9485061baac53e5a6f07ddf05751b152078a1ab1 (patch)
tree08de5252daa10e46c1140fa58d30732efcc18b96 /src/nvim/eval.lua
parent4946751906370134cd02e8da0736bef221171172 (diff)
downloadrneovim-9485061baac53e5a6f07ddf05751b152078a1ab1.tar.gz
rneovim-9485061baac53e5a6f07ddf05751b152078a1ab1.tar.bz2
rneovim-9485061baac53e5a6f07ddf05751b152078a1ab1.zip
vim-patch:8.0.1039: cannot change a line in not current buffer
Problem: Cannot change a line in a buffer other than the current one. Solution: Add setbufline(). (Yasuhiro Matsumoto, Ozaki Kiichi, closes vim/vim#1953) https://github.com/vim/vim/commit/b31cf2bb0be95d106bd8eef93cc07550591c1d0d
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r--src/nvim/eval.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua
index f36a7ea6c0..7cab0e7f80 100644
--- a/src/nvim/eval.lua
+++ b/src/nvim/eval.lua
@@ -263,6 +263,7 @@ return {
serverlist={},
serverstart={args={0, 1}},
serverstop={args=1},
+ setbufline={args=3},
setbufvar={args=3},
setcharsearch={args=1},
setcmdpos={args=1},