sran.nvim

0.0.6 • Public • Published

Simple Request And Notification

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
    • nvim vim instance
    • util
      • getIP: function to get ip
      • opener: it's opener fork to opens stuff, like webpages and files and executables, cross-platform
      • getLogger: function to get log4js's logger instance
  • viml api
    • sran#rpc#notify for notification call
    • sran#rpc#request for request call

Examples

Debug

let $NVIM_SRAN_LOG_FILE = expand('~/sran-nvim.log')
let $NVIM_SRAN_LOG_LEVEL = 'debug'

Buy Me A Coffee ☕️

btc

image

Readme

Keywords

none

Package Sidebar

Install

npm i sran.nvim

Weekly Downloads

0

Version

0.0.6

License

MIT

Unpacked Size

22 kB

Total Files

24

Last publish

Collaborators

  • yuuko