NAME

Neovim::Ext::Funcs - Neovim Funcs class

VERSION

version 0.01

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.