aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-11-05 15:14:09 +0800
committerGitHub <noreply@github.com>2022-11-05 15:14:09 +0800
commit45a3e7f6694c66c3577a47c7ff1fb8bfcc2ab7be (patch)
tree0a52ff4bcb4eebd88b70e36d51a7797b3105dd96 /runtime/doc
parent86fe2c8d94d212af098002ce04c87fb73fdf9c52 (diff)
parent30cfdd0ea1f67afed6732ecbcdda9dda72a2b0a0 (diff)
downloadrneovim-45a3e7f6694c66c3577a47c7ff1fb8bfcc2ab7be.tar.gz
rneovim-45a3e7f6694c66c3577a47c7ff1fb8bfcc2ab7be.tar.bz2
rneovim-45a3e7f6694c66c3577a47c7ff1fb8bfcc2ab7be.zip
Merge pull request #20942 from zeertzjq/vim-8.2.5027
vim-patch:8.2.{3252,3919,5027}
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/builtin.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 2cd2eed3a1..e7e44374c6 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -654,9 +654,10 @@ appendbufline({buf}, {lnum}, {text}) *appendbufline()*
For the use of {buf}, see |bufname()|.
- {lnum} is used like with |append()|. Note that using |line()|
- would use the current buffer, not the one appending to.
- Use "$" to append at the end of the buffer.
+ {lnum} is the line number to append below. Note that using
+ |line()| would use the current buffer, not the one appending
+ to. Use "$" to append at the end of the buffer. Other string
+ values are not supported.
On success 0 is returned, on failure 1 is returned.