Skip to main content
Module

x/denops_std/function/mod.ts>rubyeval

📚 Standard module for denops.vim
Go to Latest
function rubyeval
import { rubyeval } from "https://deno.land/x/denops_std@v3.9.1/function/mod.ts";

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. Note that in a :def function local variables are not visible to {expr}. 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>