Skip to main content
Module

x/denops_std/option/mod.ts>cursorline

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

{not available when compiled without the |+syntax| feature} Highlight the text line of the cursor with CursorLine |hl-CursorLine|. Useful to easily spot the cursor. Will make screen redrawing slower. When Visual mode is active the highlighting isn't used to make it easier to see the selected text.

type

{ get(denops: Denops): Promise<boolean>; set(denops: Denops, value: boolean): Promise<void>; reset(denops: Denops): Promise<void>; getLocal(denops: Denops): Promise<boolean>; setLocal(denops: Denops, value: boolean): Promise<void>; resetLocal(denops: Denops): Promise<void>; }