jiq 3.21.0

Interactive JSON query tool with real-time output
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Selection state module for AI suggestion navigation and application
//!
//! This module provides functionality for selecting and applying AI suggestions
//! via keyboard shortcuts (Alt+1-5 for direct selection, Alt+Up/Down/j/k for navigation).

pub mod apply;
pub mod keybindings;
pub mod state;

// Re-export main types
pub use state::SelectionState;