All Projects → neovim → Lua Client

neovim / Lua Client

Licence: apache-2.0
Nvim Lua client

Programming Languages

lua
6591 projects

lua-client

Build Status

Lua client for Neovim

Build

The Makefile pulls and builds various dependencies into .deps.

 make

Test

Run tests against whatever nvim is in $PATH:

 make test

Use a specific nvim:

 NVIM_PROG=/path/to/nvim make test

Use test tags (it('#foo', function() ...):

 NVIM_PROG=/path/to/nvim make test TEST_TAG=foo

Release

  1. Bump the rockspec version and filename.
  2. Create and push a new tag.
    TAG=$(echo *.rockspec | grep -o '[0-9].[0-9].[0-9].[0-9]')
    git tag -a "$TAG" -m "nvim-client $TAG"
    git push --follow-tags --dry-run
    git push --follow-tags
    
  3. Generate LuaRocks API key
  4. Upload the new rockspec.
    ./.deps/usr/bin/luarocks upload --api-key=xxx nvim-client-*.rockspec
    
    • Note: luarocks upload requires a JSON library.
      ./.deps/usr/bin/luarocks install dkjson
      
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].