Skip to main content
Module

x/ddc_vim/deps.ts>fn.getmarklist

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

Without the {expr} argument returns a |List| with information about all the global marks. |mark| If the optional {expr} argument is specified, returns the local marks defined in buffer {expr}. For the use of {expr}, see |bufname()|. Each item in the returned List is a |Dict| with the following: mark name of the mark prefixed by "'" pos a |List| with the position of the mark: [bufnum, lnum, col, off] Refer to |getpos()| for more information. file file name Refer to |getpos()| for getting information about a specific mark. Can also be used as a |method|: GetBufnr()->getmarklist()

Parameters

denops: Denops
optional
expr: unknown

Returns

Promise<unknown>