Skip to main content
Module

x/ddc_vim/deps.ts>fn.funcref

Dark deno-powered completion framework for neovim/Vim
Latest
function fn.funcref
import { fn } from "https://deno.land/x/ddc_vim@v4.3.1/deps.ts";
const { funcref } = fn;

Just like function(), but the returned Funcref will lookup the function by reference, not by name. This matters when the function {name} is redefined later.

Unlike function(), {name} must be an existing user function. It only works for an autoloaded function if it has already been loaded (to avoid mistakenly loading the autoload script when only intending to use the function name, use function() instead). {name} cannot be a builtin function. Returns 0 on error.

Can also be used as a method:

GetFuncname()->funcref([arg])

Parameters

denops: Denops
name: unknown
optional
arglist: unknown
optional
dict: unknown

Returns

Promise<unknown>