Skip to main content
Module

x/denops_std/option/mod.ts>thesaurus

📚 Standard module for denops.vim
Go to Latest
variable thesaurus
import { thesaurus } from "https://deno.land/x/denops_std@v4.1.7/option/mod.ts";

List of file names, separated by commas, that are used to lookup words for thesaurus completion commands i_CTRL-X_CTRL-T. See compl-thesaurus.

This option is not used if 'thesaurusfunc' is set, either for the buffer or globally.

To include a comma in a file name precede it with a backslash. Spaces after a comma are ignored, otherwise spaces are included in the file name. See option-backslash about using backslashes. The use of :set+= and :set-= is preferred when adding or removing directories from the list. This avoids problems when a future version uses another default. Backticks cannot be used in this option for security reasons.

(default "")

type

{ get(denops: Denops): Promise<string>; set(denops: Denops, value: string): Promise<void>; reset(denops: Denops): Promise<void>; getGlobal(denops: Denops): Promise<string>; setGlobal(denops: Denops, value: string): Promise<void>; resetGlobal(denops: Denops): Promise<void>; getLocal(denops: Denops): Promise<string>; setLocal(denops: Denops, value: string): Promise<void>; resetLocal(denops: Denops): Promise<void>; }