The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Neovim::Ext::Buffers - Neovim Buffers class

VERSION

version 0.05

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.