sran.nvim
v0.0.6
Published
Simple Request And Notification script for (neo)vim
Downloads
18
Readme
The easiest way to write remote plugin for (neo)vim by javascript
Using neovim's node-client you can write remote plugin really easy through javascript. But most of time i just want to run an async function to fetch some data or other stuff, and sran.nvim is for the situation and also support vim by vim-node-rpc.
Install
It works on vim >= 8.1 and neovim
" use pre build
Plug 'iamcco/sran.nvim', { 'do': { -> sran#util#install() } }
" use node.js and yarn
Plug 'iamcco/sran.nvim', { 'do': 'yarn' }
Hello world
plugin structure
your-plugin-dir
-> rplugin
-> sran
-> hello-world.js // or javascript dir package
hello-world.js
module.exports = function (plugin) {
const nvim = plugin.nvim
nvim.on('notification', (method, args) => {
if (method === 'hello_world') {
setTimeout(() => {
nvim.command('echo "hello world"')
}, 2000)
}
})
}
install sran.nvim and your plugin
Plug 'iamcco/sran.nvim', { 'do': { -> sran#util#install() } }
Plug 'your-account/your-plugin-name'
now
:call sran#rpc#notify('hello_world')
then you will see hello world
message in the command line after 2 seconds.
use
request
for sync
About
- sran.nvim will use builtin node.js binary if use pre build
- builtin packages
- fast-glob
- log4js
- msgpack-lite
- neovim
- node-fetch
- tslib
- cheerio
- rxjs
- findup
so if you use these packages you don't need to install them in your plugin's local directory
- javascript Plugin api
- viml api
sran#rpc#notify
for notification callsran#rpc#request
for request call
Examples
- dict.nvim translate words through google translate api
- git-p.nvim git diff sign and blame line display
- clock.nvim big clock for neovim
Debug
let $NVIM_SRAN_LOG_FILE = expand('~/sran-nvim.log')
let $NVIM_SRAN_LOG_LEVEL = 'debug'