Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/denops_std/option/vim/mod.ts>guifontset

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

not available in the GTK+ GUI When not empty, specifies two (or more) fonts to be used. The first one for normal English, the second one for your special language. See xfontset.

(default "")

only available when compiled with GUI enabled and with the +xfontset feature

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>; }