//! Handling redraw notifications received from neovim
//!
//! The core of a UI client is defining and implementing the
//! [`Handler`].
use io;
use crateRedrawNotification;
/// The central functionality of a UI client.
/// The dummy handler ignores redraw notifications.
///
/// It can be used if a client only wants to send requests to Neovim and get
/// responses.
;