Skip to main content
Module

x/dpp_vim/deps.ts>fn.items

Dark powered plugin manager for Vim/neovim
Latest
function fn.items
import { fn } from "https://deno.land/x/dpp_vim@v0.2.0/deps.ts";
const { items } = fn;

Return a List with all the key-value pairs of {dict}. Each List item is a list with two items: the key of a {dict} entry and the value of this entry. The List is in arbitrary order. Also see keys() and values(). Example:

for [key, value] in items(mydict)
   echo key .. ': ' .. value
endfor

A List or a String argument is also supported. In these cases, items() returns a List with the index and the value at the index.

Can also be used as a method:

mydict->items()

Parameters

denops: Denops
dict: unknown

Returns

Promise<unknown[]>