Skip to main content
Module

x/dpp_vim/deps.ts>fn.strgetchar

Dark powered plugin manager for Vim/neovim
Latest
function fn.strgetchar
import { fn } from "https://deno.land/x/dpp_vim@v0.2.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>