Skip to main content
The Deno 2 Release Candidate is here
Learn more
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.7.1/types.ts";
definition: { autoCompleteDelay: number; autoCompleteEvents: DdcEvent[]; backspaceCompletion: boolean; cmdlineSources: SourceName[] | Record<string, SourceName[]>; filterOptions: Record<string, Partial<FilterOptions>>; filterParams: Record<string, Partial<BaseFilterParams>>; keywordPattern: string; postFilters: string[]; sourceOptions: Record<SourceName, Partial<SourceOptions>>; sourceParams: Record<SourceName, Partial<BaseSourceParams>>; sources: SourceName[]; specialBufferCompletion: boolean; ui: string; uiOptions: Record<SourceName, Partial<UiOptions>>; uiParams: Record<SourceName, Partial<BaseUiParams>>; }