Expand description
Helpers for integrating REPLs with GNU Readline.
This crate can be used to parse Readline editing mode from the standard set of GNU Readline config files.
§Examples
use artichoke_readline::{get_readline_edit_mode, rl_read_init_file, EditMode};
if let Some(config) = rl_read_init_file() {
if matches!(get_readline_edit_mode(config), Some(EditMode::Vi)) {
println!("You have chosen wisely");
}
}
§Crate Features
The rustyline feature (enabled by default) adds trait implementations to
allow EditMode
to interoperate with the corresponding enum in the
rustyline
crate.
Enums§
- Edit
Mode - Readline editing mode.
Functions§
- get_
readline_ edit_ mode - Parse readline editing mode from the given byte content, which should be the contents of an inputrc config file.
- rl_
read_ init_ file - Read inputrc contents according to the GNU Readline hierarchy of config files.