Skip to main content
Module

x/ddc_vim/deps.ts>op.concealcursor

Dark deno-powered completion framework for neovim/Vim
Latest
variable op.concealcursor
import { op } from "https://deno.land/x/ddc_vim@v4.3.1/deps.ts";
const { concealcursor } = op;

Sets the modes in which text in the cursor line can also be concealed. When the current mode is listed then concealing happens just like in other lines. n Normal mode v Visual mode i Insert mode c Command line editing, for 'incsearch'

'v' applies to all lines in the Visual area, not only the cursor. A useful value is "nc". This is used in help files. So long as you are moving around text is concealed, but when starting to insert text or selecting a Visual area the concealed text is displayed, so that you can see what you are doing. Keep in mind that the cursor position is not always where it's displayed. E.g., when moving vertically it may change column.

(default: "")

not available when compiled without the +conceal feature

type

LocalOption<string>