Skip to main content
Module

x/ddc_vim/deps.ts>op.cursorcolumn

Dark deno-powered completion framework for neovim/Vim8
Go to Latest
variable op.cursorcolumn
import { op } from "https://deno.land/x/ddc_vim@v2.3.0/deps.ts";
const { cursorcolumn } = op;

{not available when compiled without the |+syntax| feature} Highlight the screen column of the cursor with CursorColumn |hl-CursorColumn|. Useful to align text. Will make screen redrawing slower. If you only want the highlighting in the current window you can use these autocommands: > au WinLeave * set nocursorline nocursorcolumn au WinEnter * set cursorline cursorcolumn <