zsh-sys 0.2.0

Low-level bindings to dynamically-loadable zsh internals
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(any(feature = "zle", feature = "builtins", feature = "modules"))]
#[macro_use]
mod hooks_import;

mod base;
pub use base::*;

#[cfg(feature = "builtins")]
pub mod builtins;

#[cfg(feature = "modules")]
pub mod modules;

#[cfg(feature = "zle")]
pub mod zle;