reovim-plugin-notification 0.7.10

Toast notification and progress bar plugin for reovim
Documentation

Toast notification and progress bar plugin for reovim

This plugin provides non-blocking notifications and progress indicators.

Usage

Other plugins can emit notification events:

use reovim_plugin_notification::{NotificationShow, ProgressUpdate};

// Show a notification
bus.emit(NotificationShow::success("File saved"));

// Show progress
bus.emit(ProgressUpdate::new("build", "Building", "cargo").with_progress(45));