Skip to main content
Module

x/ddc_vim/deps.ts>fn.histget

Dark deno-powered completion framework for neovim/Vim8
Go to Latest
function fn.histget
import { fn } from "https://deno.land/x/ddc_vim@v2.3.0/deps.ts";
const { histget } = fn;

The result is a String, the entry with Number {index} from {history}. See |hist-names| for the possible values of {history}, and |:history-indexing| for {index}. If there is no such entry, an empty String is returned. When {index} is omitted, the most recent item from the history is used. Examples: Redo the second last search from history. :execute '/' . histget("search", -2) Define an Ex command ":H {num}" that supports re-execution of the {num}th entry from the output of |:history|. :command -nargs=1 H execute histget("cmd", 0+) Can also be used as a |method|: GetHistory()->histget()

Parameters

denops: Denops
history: unknown
optional
index: unknown

Returns

Promise<unknown>