Hi,

As mentioned in cld-mkiv.pdf, the entire ConTeXt interface can be called from lua: This is great!

Unfortunately the ConTeXt command \goto is a little problematic because goto is a lua keyword. Therefore, the following leads to a lua error:

    context.goto("text", { "label" })

I guess the only way to call goto from lua is

    context(false, "\\goto{text}[label]")

Am I correct?

Cheers,

Christoph