vtcode_core/terminal_setup/features/mod.rs
1//! Feature-specific configuration generators.
2//!
3//! Each feature generates terminal-specific configuration snippets.
4
5pub mod copy_paste;
6pub mod multiline;
7pub mod notifications;
8pub mod shell_integration;
9pub mod theme_sync;
10
11#[cfg(test)]
12mod tests {
13 #[test]
14 fn test_module_structure() {
15 // Placeholder test
16 }
17}