diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-20 00:02:36 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-20 08:14:54 -0500 |
commit | c147806e23d0ade781b8a298924150fe8d5887ad (patch) | |
tree | 463c49d6c557b1593ffd3c597ffd4fe163643be8 /runtime | |
parent | 026ba804d173c41ab99ee270c93f7975c1d6d713 (diff) | |
download | rneovim-c147806e23d0ade781b8a298924150fe8d5887ad.tar.gz rneovim-c147806e23d0ade781b8a298924150fe8d5887ad.tar.bz2 rneovim-c147806e23d0ade781b8a298924150fe8d5887ad.zip |
vim-patch:8.2.0019: cannot number of lines of another buffer
Problem: Cannot number of lines of another buffer.
Solution: Add "linecount" to getbufinfo(). (Yasuhiro Matsumoto,
closes vim/vim#5370)
https://github.com/vim/vim/commit/a9e9679de3ef082ee29868ab404283dfc53258f2
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index d02ed54e27..77589b732d 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -4138,6 +4138,8 @@ getbufinfo([{dict}]) hidden TRUE if the buffer is hidden. listed TRUE if the buffer is listed. lnum current line number in buffer. + linecount number of lines in the buffer (only + valid when loaded) loaded TRUE if the buffer is loaded. name full path to the file in the buffer. signs list of signs placed in the buffer. |