Trait reedline::ComplationActionHandler[][src]

pub trait ComplationActionHandler {
    fn handle(&mut self, line: &mut LineBuffer);
}
Expand description

The handler for when the user begins a completion action, often using the tab key This handler will then present the options to the user, allowing them to navigate the options and pick the completion they want

Required methods

Handle the completion action from the given line buffer

Implementors