Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/ddc_vim/deps.ts>fn.screenstring

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

The result is a String that contains the base character and any composing characters at position [row, col] on the screen. This is like |screenchars()| but returning a String with the characters. This is mainly to be used for testing. Returns an empty String when row or col is out of range. Can also be used as a |method|: GetRow()->screenstring(col)

Parameters

denops: Denops
row: unknown
col: unknown

Returns

Promise<unknown>