Giter Club home page Giter Club logo

Comments (6)

Andriamanitra avatar Andriamanitra commented on June 20, 2024

The "micro/util" you can import in Lua is not the same thing as the internal util package. The only functions it exposes are:

micro/cmd/micro/initlua.go

Lines 148 to 165 in 9176508

func luaImportMicroUtil() *lua.LTable {
pkg := ulua.L.NewTable()
ulua.L.SetField(pkg, "RuneAt", luar.New(ulua.L, util.LuaRuneAt))
ulua.L.SetField(pkg, "GetLeadingWhitespace", luar.New(ulua.L, util.LuaGetLeadingWhitespace))
ulua.L.SetField(pkg, "IsWordChar", luar.New(ulua.L, util.LuaIsWordChar))
ulua.L.SetField(pkg, "String", luar.New(ulua.L, util.String))
ulua.L.SetField(pkg, "Unzip", luar.New(ulua.L, util.Unzip))
ulua.L.SetField(pkg, "Version", luar.New(ulua.L, util.Version))
ulua.L.SetField(pkg, "SemVersion", luar.New(ulua.L, util.SemVersion))
ulua.L.SetField(pkg, "HttpRequest", luar.New(ulua.L, util.HttpRequest))
ulua.L.SetField(pkg, "CharacterCountInString", luar.New(ulua.L, util.CharacterCountInString))
ulua.L.SetField(pkg, "RuneStr", luar.New(ulua.L, func(r rune) string {
return string(r)
}))
return pkg
}

(also documented in help plugins)

from micro.

dei-layborer avatar dei-layborer commented on June 20, 2024

I see. That being the case, it seems like this part of plugins.md is misleading:

This may seem like a small list of available functions but some of the objects returned by the functions have many methods. The Lua plugin may access any public methods of an object returned by any of the functions above. Unfortunately it is not possible to list all the available functions on this page. Please go to the internal documentation at https://pkg.go.dev/github.com/zyedidia/micro/v2/internal to see the full list of available methods. Note that only methods of types that are available to plugins via the functions above can be called from a plugin.

from micro.

Andriamanitra avatar Andriamanitra commented on June 20, 2024

The documentation is correct although I can see how it could be confusing if you don't read it carefully: import is not on the list of functions the documentation is referring to, and it just returns a regular Lua table with some functions in it. Those functions (import("micro/util").HttpRequest, import("micro").CurPane, etc.) return the (Go) objects the documentation is referring to. The (Go) objects are userdata on the Lua side, and you can indeed access any of their public methods.

from micro.

dei-layborer avatar dei-layborer commented on June 20, 2024

I more meant that it says to go look at the internal documentation at that link "to see the full list of available methods," but not all of those methods are actually available.

from micro.

dmaluka avatar dmaluka commented on June 20, 2024

IsWhitespace() is not a method.

The documentation explicitly warns: "Note that only methods of types that are available to plugins via the functions above can be called from a plugin."

For example, one of those "functions above" is CurPane(), it returns a BufPane object, and all the methods of this object indeed can be invoked from Lua.

local bp = micro.CurPane()
bp:AddTab()

etc.

from micro.

dei-layborer avatar dei-layborer commented on June 20, 2024

Again, this is not clear from the documentation for the reasons I stated above. But I won't belabor it at this point.

from micro.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.