Skip to main content
Module

x/denops_std/option/mod.ts>revins

📚 Standard module for denops.vim
Go to Latest
variable revins
import { revins } from "https://deno.land/x/denops_std@v4.1.6/option/mod.ts";

Inserting characters in Insert mode will work backwards. See "typing backwards" ins-reverse. This option can be toggled with the CTRL-_ command in Insert mode, when 'allowrevins' is set. NOTE: This option is reset when 'compatible' is set. This option is reset when 'paste' is set and restored when 'paste' is reset.

(default off)

only available when compiled with the +rightleft feature

type

{ get(denops: Denops): Promise<boolean>; set(denops: Denops, value: boolean): Promise<void>; reset(denops: Denops): Promise<void>; getGlobal(denops: Denops): Promise<boolean>; setGlobal(denops: Denops, value: boolean): Promise<void>; resetGlobal(denops: Denops): Promise<void>; }