Skip to main content
Module

x/denops_std/option/mod.ts>cinscopedecls

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

Keywords that are interpreted as a C++ scope declaration by |cino-g|. Useful e.g. for working with the Qt framework that defines additional scope declarations "signals", "public slots" and "private slots": > set cinscopedecls+=signals,public\ slots,private\ slots

type

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