diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-11-01 18:18:02 +0000 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-11-26 18:53:12 +0000 |
commit | a0c7fff2840d0fc322e049fd06bf1e8e5bd0f38c (patch) | |
tree | 6316852b591b859f469adccda0efc2fe1208bdbb /runtime | |
parent | 2c185a18cdc7c77aa67e44ba854f8ddd9b3f2de9 (diff) | |
download | rneovim-a0c7fff2840d0fc322e049fd06bf1e8e5bd0f38c.tar.gz rneovim-a0c7fff2840d0fc322e049fd06bf1e8e5bd0f38c.tar.bz2 rneovim-a0c7fff2840d0fc322e049fd06bf1e8e5bd0f38c.zip |
vim-patch:8.2.1241: cannot use getbufinfo() as a method
Problem: Cannot use getbufinfo() as a method.
Solution: Support using getbufinfo() as a method. (closes vim/vim#6458)
https://github.com/vim/vim/commit/6434fc574dfbde11461e70e5a62712370edf38e6
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index d71381347d..8e6864889c 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -4701,7 +4701,9 @@ getbufinfo([{dict}]) < To get buffer-local options use: > getbufvar({bufnr}, '&option_name') - +< + Can also be used as a |method|: > + GetBufnr()->getbufinfo() < *getbufline()* getbufline({buf}, {lnum} [, {end}]) |