Skip to main content
Module

x/denops_std/function/vim/mod.ts>echoraw

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

Output {string} as-is, including unprintable characters. This can be used to output a terminal code. For example, to disable modifyOtherKeys:

call echoraw(&t_TE)

and to enable it again:

call echoraw(&t_TI)

Use with care, you can mess up the terminal this way.

Parameters

denops: Denops
string: unknown

Returns

Promise<void>