summaryrefslogtreecommitdiffstats
path: root/crates/core/flags/complete/mod.rs
blob: b531bf12b3541bc580fc037ed4a410789a3ff227 (plain)
1
2
3
4
5
6
7
8
9
10
/*!
Modules for generating completions for various shells.
*/

static ENCODINGS: &'static str = include_str!("encodings.sh");

pub(super) mod bash;
pub(super) mod fish;
pub(super) mod powershell;
pub(super) mod zsh;