Skip to main content
Module

x/denops_std/function/mod.ts>wordcount

📚 Standard module for denops.vim
Go to Latest
function wordcount
import { wordcount } from "https://deno.land/x/denops_std@v6.4.0/function/mod.ts";

The result is a dictionary of byte/chars/word statistics for the current buffer. This is the same info as provided by g_CTRL-G The return value includes: bytes Number of bytes in the buffer chars Number of chars in the buffer words Number of words in the buffer cursor_bytes Number of bytes before cursor position (not in Visual mode) cursor_chars Number of chars before cursor position (not in Visual mode) cursor_words Number of words before cursor position (not in Visual mode) visual_bytes Number of bytes visually selected (only in Visual mode) visual_chars Number of chars visually selected (only in Visual mode) visual_words Number of words visually selected (only in Visual mode)

Returns

Promise<Record<string, unknown>>