Skip to main content
Module

x/ddc_vim/deps.ts>fn.foldclosedend

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

The result is a Number. If the line {lnum} is in a closed fold, the result is the number of the last line in that fold. If the line {lnum} is not in a closed fold, -1 is returned. {lnum} is used like with getline(). Thus "." is the current line, "'m" mark m, etc.

Can also be used as a method:

GetLnum()->foldclosedend()

Parameters

denops: Denops
lnum: unknown

Returns

Promise<number>