riml icon indicating copy to clipboard operation
riml copied to clipboard

The pyeval function is not treated as a system function

Open dsawardekar opened this issue 10 years ago • 0 comments

Using the viml native pyeval function results in a script local function call s:pyeval. This gives a runtime error, s:pyeval not found when running the generated viml.

Given the Riml,

result = pyeval('{ "foo": 1 }')

Gives the output Viml,

let s:result = s:pyeval('{ "foo": 1 }')

It should be just pyeval.

dsawardekar avatar Apr 11 '14 19:04 dsawardekar