Scrollable slash commands (#1830)

Scrollable slash commands. Part 1 of the multi PR.
This commit is contained in:
easong-openai
2025-08-06 21:23:09 -07:00
committed by GitHub
parent 4971d54ca7
commit 2098b40369
8 changed files with 523 additions and 207 deletions

View File

@@ -0,0 +1,5 @@
//! Shared popup-related constants for bottom pane widgets.
/// Maximum number of rows any popup should attempt to display.
/// Keep this consistent across all popups for a uniform feel.
pub(crate) const MAX_POPUP_ROWS: usize = 8;