Skip to main content
Module

x/ddc_vim/types.ts>DdcOptions

Dark deno-powered completion framework for neovim/Vim8
Go to Latest
type alias DdcOptions
import { type DdcOptions } from "https://deno.land/x/ddc_vim@v3.4.0/types.ts";
definition: { autoCompleteDelay: number; autoCompleteEvents: DdcEvent[]; backspaceCompletion: boolean; cmdlineSources: SourceName[] | Record<string, SourceName[]>; filterOptions: Record<string, Partial<FilterOptions>>; filterParams: Record<string, Partial<Record<string, unknown>>>; keywordPattern: string; postFilters: string[]; sourceOptions: Record<SourceName, Partial<SourceOptions>>; sourceParams: Record<SourceName, Partial<Record<string, unknown>>>; sources: SourceName[]; specialBufferCompletion: boolean; ui: string; uiOptions: Record<SourceName, Partial<UiOptions>>; uiParams: Record<SourceName, Partial<Record<string, unknown>>>; }