dart_nvim_api

Creator: coderz1093

Last updated:

0 purchases

dart_nvim_api Image
dart_nvim_api Images

Languages

Categories

Add to Cart

Description:

dart nvim api

Dart Nvim API #
Neovim API implementation for Dart, based on and inspired by neovim-lib.
Still a WIP, so any feedback, contributions, etc. are greatly appreciated.

NOTE: Dart Nvim API is still in its early stages, so there are likely to be breaking API changes.

Example Usage #
import 'package:dart_nvim_api/dart_nvim_api.dart';

void main(List<String> args) async {
// Start up Neovim instance, with optional `onNotify` and `onRequest`
// callbacks.
// See also Nvim.child()
var nvim = await Nvim.spawn();

// Run Neovim ex command.
await nvim.command("echo 'hello'");

// Get ex command output.

assert(await nvim.exec('echo 1 + 1', true) == '2');

// Buffer example:
var buf = await nvim.createBuf(true, false);
var bufNameWithoutPath = 'some name';
await nvim.bufSetName(buf, bufNameWithoutPath);
var bufName = await nvim.bufGetName(buf);
assert(bufName.contains(bufNameWithoutPath));

// Kill Neovim when done.
nvim.kill();
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.