diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-22 22:39:28 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-23 07:46:51 -0400 |
commit | 9358979d096a6bfde371bbca5c77f8d45a4de253 (patch) | |
tree | 5572ed3ba56cd16f915ddd4182943b2be3350a98 /src/nvim/eval.lua | |
parent | c6eb1f42bec06e92c2c5ee9a523af4e46ac05083 (diff) | |
download | rneovim-9358979d096a6bfde371bbca5c77f8d45a4de253.tar.gz rneovim-9358979d096a6bfde371bbca5c77f8d45a4de253.tar.bz2 rneovim-9358979d096a6bfde371bbca5c77f8d45a4de253.zip |
vim-patch:8.1.0037: cannot easily append lines to another buffer
Problem: Cannot easily append lines to another buffer.
Solution: Add appendbufline().
https://github.com/vim/vim/commit/ca851593a660f08aba5c134f90c238d4a3e983e6
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index db45409e77..6b63003e69 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -20,6 +20,7 @@ return { ['and']={args=2}, api_info={}, append={args=2}, + appendbufline={args=3}, argc={args={0, 1}}, argidx={}, arglistid={args={0, 2}}, |