Skip to main content
Module

x/ddc_vim/deps.ts>op.imsearch

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

Specifies whether :lmap or an Input Method (IM) is to be used when entering a search pattern. Valid values: -1 the value of 'iminsert' is used, makes it look like 'iminsert' is also used when typing a search pattern 0 :lmap is off and IM is off 1 :lmap is ON and IM is off 2 :lmap is off and IM is ON Note that this option changes when using CTRL-^ in Command-line mode c_CTRL-^. The value is set to 1 when it is not -1 and setting the 'keymap' option to a valid keymap name. The value 0 may not work correctly with Motif with some XIM methods. Use 'imdisable' to disable XIM then.

(default -1)

type

LocalOption<number>