#editor #neovim #vim #terminal #vi

reovim-plugin-notification

Toast notification and progress bar plugin for reovim

5 releases

Uses new Rust 2024

0.8.1 Jan 11, 2026
0.8.0 Jan 8, 2026
0.7.10 Jan 6, 2026
0.7.9 Jan 5, 2026
0.7.8 Dec 27, 2025

#6 in #vi


Used in 2 crates

AGPL-3.0-only

2MB
39K SLoC

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));

Dependencies

~39–60MB
~1M SLoC