Skip to main content
Module

x/ddc_vim/deps.ts>op.maxfuncdepth

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

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.

(default 100)

not available when compiled without the +eval feature

type

GlobalOption<number>