nvimpam 0.2.1

A neovim rpc plugin providing folding for PAMCRASH files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The companion library to the nvimpam binary.
extern crate failure;
#[macro_use]
extern crate log;
extern crate itertools;
extern crate neovim_lib;
extern crate atoi;
extern crate byteorder;

pub mod card;
pub mod carddata;
pub mod event;
pub mod folds;
pub mod handler;
pub mod lines;
pub mod nocommentiter;
pub mod skipresult;