aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-11-28 03:49:17 +0100
committerGitHub <noreply@github.com>2018-11-28 03:49:17 +0100
commit0d1e5ec1b87fd810ddfbd3ab7300ef57ae65b485 (patch)
treeabe7eb197a69db5f0455031240bb06f73b0aa953 /src/nvim/api/vim.c
parentcf631aaed04925d37b7dcd7c30668fa32119da8e (diff)
parent452cadb85a098df9fab5146c7accef3c853c23a2 (diff)
downloadrneovim-0d1e5ec1b87fd810ddfbd3ab7300ef57ae65b485.tar.gz
rneovim-0d1e5ec1b87fd810ddfbd3ab7300ef57ae65b485.tar.bz2
rneovim-0d1e5ec1b87fd810ddfbd3ab7300ef57ae65b485.zip
Merge #9221 from justinmk/doc
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 54b27477e0..4da61a30ef 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -743,6 +743,9 @@ void nvim_err_writeln(String str)
/// Gets the current list of buffer handles
///
+/// Includes unlisted (unloaded/deleted) buffers, like `:ls!`.
+/// Use |nvim_buf_is_loaded()| to check if a buffer is loaded.
+///
/// @return List of buffer handles
ArrayOf(Buffer) nvim_list_bufs(void)
FUNC_API_SINCE(1)