Skip to main content

ytil_noxi/
lib.rs

1//! Aggregated Nvim extension submodules.
2
3// Selective re-exports of nvim_oxi types used by downstream crates (e.g. nvrim).
4// Avoids `pub use nvim_oxi::*` which would make every upstream breaking change silently propagate.
5pub use nvim_oxi::Dictionary;
6pub use nvim_oxi::api;
7pub use nvim_oxi::plugin;
8
9pub mod buffer;
10pub mod common;
11pub mod dict;
12pub mod extract;
13pub mod inputlist;
14pub mod jumplist;
15pub mod macros;
16pub mod mru_buffers;
17pub mod notify;
18pub mod quickfix;
19pub mod tree_sitter;
20pub mod vim_ui_select;
21pub mod visual_selection;
22pub mod window;