Skip to main content
Module

x/ddc_vim/deps.ts>fn.rubyeval

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

Evaluate Ruby expression {expr} and return its result converted to Vim data structures. Numbers, floats and strings are returned as they are (strings are copied though). Arrays are represented as Vim |List| type. Hashes are represented as Vim |Dictionary| type. Other objects are represented as strings resulted from their "Object#to_s" method. Can also be used as a |method|: GetRubyExpr()->rubyeval() {only available when compiled with the |+ruby| feature}

Parameters

denops: Denops
expr: unknown

Returns

Promise<unknown>