rho-coding-agent 1.13.0

A lightweight agent harness inspired by Pi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::should_request_extended_keyboard_protocols;

#[test]
fn extended_keyboard_protocols_follow_windows_conpty_policy() {
    // Keep Shift+Tab representable under ConPTY by skipping Kitty enhancements
    // and modifyOtherKeys on Windows. See the policy comment in keyboard_modes.
    assert_eq!(
        should_request_extended_keyboard_protocols(),
        !cfg!(windows),
        "extended keyboard protocols must stay disabled on Windows"
    );
}