diff options
author | James McCoy <jamessan@jamessan.com> | 2016-11-15 16:46:11 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-12-28 14:57:39 -0500 |
commit | c4c894b2fada371c424e55d26174110b9069b5f8 (patch) | |
tree | 04398ea516a3b6db1addaf4fbc68f176301d9462 /runtime/doc | |
parent | 486e968bb6bdfb49d17305d6f7747408eda95926 (diff) | |
download | rneovim-c4c894b2fada371c424e55d26174110b9069b5f8.tar.gz rneovim-c4c894b2fada371c424e55d26174110b9069b5f8.tar.bz2 rneovim-c4c894b2fada371c424e55d26174110b9069b5f8.zip |
vim-patch:7.4.2226
Problem: The field names used by getbufinfo(), gettabinfo() and
getwininfo() are not consistent.
Solution: Use bufnr, winnr and tabnr. (Yegappan Lakshmanan)
https://github.com/vim/vim/commit/339288377072f66ec88e21903e75a82d23ffbf4f
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/eval.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 3bf13dfc34..d97c10ee84 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -3617,6 +3617,7 @@ getbufinfo([{dict}]) Each returned List item is a dictionary with the following entries: + bufnr buffer number. changed TRUE if the buffer is modified. changedtick number of changes made to the buffer. hidden TRUE if the buffer is hidden. @@ -3624,7 +3625,6 @@ getbufinfo([{dict}]) lnum current line number in buffer. loaded TRUE if the buffer is loaded. name full path to the file in the buffer. - nr buffer number. options dictionary of buffer local options. signs list of signs placed in the buffer. Each list item is a dictionary with |