mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-04-24 17:12:16 +02:00
9 lines
152 B
Rust
9 lines
152 B
Rust
|
/*!
|
||
|
Modules for generating completions for various shells.
|
||
|
*/
|
||
|
|
||
|
pub(super) mod bash;
|
||
|
pub(super) mod fish;
|
||
|
pub(super) mod powershell;
|
||
|
pub(super) mod zsh;
|