Skip to main content
Module

x/dpp_vim/deps.ts>fn.getregtype

Dark powered plugin manager for Vim/neovim
Latest
function fn.getregtype
import { fn } from "https://deno.land/x/dpp_vim@v0.2.0/deps.ts";
const { getregtype } = fn;

The result is a String, which is type of register {regname}. The value will be one of: "v" for characterwise text "V" for linewise text "<CTRL-V>{width}" for blockwise-visual text "" for an empty or unknown register <CTRL-V> is one character with value 0x16. The {regname} argument is a string. If {regname} is "", the unnamed register '"' is used. If {regname} is not specified, v:register is used. In Vim9-script {regname} must be one character.

Can also be used as a method:

GetRegname()->getregtype()

Parameters

denops: Denops
optional
regname: unknown

Returns

Promise<string>