Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/denops_std/option/nvim/mod.ts>jumpoptions

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

List of words that change the behavior of the |jumplist|. stack Make the jumplist behave like the tagstack or like a web browser. Relative location of entries in the jumplist is preserved at the cost of discarding subsequent entries when navigating backwards in the jumplist and then jumping to a location. |jumplist-stack|

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