Skip to main content
Module

x/ddc_vim/deps.ts>fn.strgetchar

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

Get a Number corresponding to the character at {index} in {str}. This uses a zero-based character index, not a byte index. Composing characters are considered separate characters here. Use nr2char() to convert the Number to a String. Returns -1 if {index} is invalid. Also see strcharpart() and strchars().

Can also be used as a method:

GetText()->strgetchar(5)

Parameters

denops: Denops
str: unknown
index: unknown

Returns

Promise<number>