Categorygithub.com/josa42/go-neovim
repositorypackage
0.3.1
Repository: https://github.com/josa42/go-neovim.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

neovim

Experimental neovim SDK for go.


Examples

func main() {
  neovim.Register(&plugin{})
}

func plugin struct {}

func (p *plugin) Register(api novim.RegisterApi) {
  api.Function("Hello", func() {
    api.Out.Messagef("Hallo %s!", "Welt")
  })
}

License

MIT © Josa Gesell