Skip to main content
Module

x/denops_std/option/mod.ts>tagrelative

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

If on and using a tags file in another directory, file names in that tags file are relative to the directory where the tags file is. NOTE: This option is set to the Vi default value when 'compatible' is set and to the Vim default value when 'compatible' is reset.

type

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