Skip to content

metainfa/neovim.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neovim.js

A Neovim client build on top of Node.js.

Warning: This project is currently incomplete and under heavy construction. Please use it at your own risk.

Installation

Install Neovim.js

$ npm install git://github.com/ngroup/neovim.js.git

Usage

Start up Neovim with $NEOVIM_LISTEN_ADDRESS specified.

$ NEOVIM_LISTEN_ADDRESS=/tmp/neovim nvim

Require neovim and instantiate a client by neovim.connect(path):

var neovim = require('neovim');
var client = neovim.connect('/tmp/neovim');

Now you can try to manipulate your Neovim:

client.command(':split');
client.command(':vsplit');

About

A Neovim client build on top of Node.js.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 54.6%
  • CoffeeScript 45.4%