NAME
Neovim::Ext::Buffers - Neovim Buffers class
VERSION
version 0.06
SYNPOSIS
use Neovim::Ext;
my $buffers = $nvim->buffers();
my $count = scalar (@{$buffers}); # buffer count
$buffers->[0]; # first buffer
$buffers->[-1]; # last buffer
DESCRIPTION
Remote Nvim buffers.
METHODS
get_bynumber( $number )
Retrieve the Neovim::Ext::Buffer
matching the buffer $number
. $number
is the actual buffer number, and NOT the index in this list.