vtcode-core 0.99.3

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Feature-specific configuration generators.
//!
//! Each feature generates terminal-specific configuration snippets.

pub mod copy_paste;
pub mod multiline;
pub mod notifications;
pub mod shell_integration;
pub mod theme_sync;

#[cfg(test)]
mod tests {
    #[test]
    fn test_module_structure() {
        // Placeholder test
    }
}