Skip to main content
Module

x/ddc_vim/deps.ts>op.maxfuncdepth

Dark deno-powered completion framework for neovim/Vim8
Go to Latest
variable op.maxfuncdepth
import { op } from "https://deno.land/x/ddc_vim@v2.3.0/deps.ts";
const { maxfuncdepth } = op;

{not available when compiled without the |+eval| feature} Maximum depth of function calls for user functions. This normally catches endless recursion. When using a recursive function with more depth, set 'maxfuncdepth' to a bigger number. But this will use more memory, there is the danger of failing when memory is exhausted. Increasing this limit above 200 also changes the maximum for Ex command recursion, see |E169|. See also |:function|.