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

NAME

Neovim::Ext::Funcs - Neovim Funcs class

VERSION

version 0.05

SYNOPSIS

        use Neovim::Ext;

        my $funcs = Neovim::Ext::Funcs->new ($nvim);

        # Call the vimscript 'join' function.
        # Produces 'first, last'
        my $out = $funcs->join (['first', 'last'], ', ');

DESCRIPTION

Helper package for functional vimscript interface. Methods are created on first use.