| 1 | // Rush interactive - Fish-like interactive features |
| 2 | |
| 3 | pub mod completer; |
| 4 | pub mod completion_spec; |
| 5 | pub mod error_hints; |
| 6 | pub mod highlighter; |
| 7 | pub mod hinter; |
| 8 | pub mod prompt; |
| 9 | |
| 10 | pub use completer::RushCompleter; |
| 11 | pub use completion_spec::{ |
| 12 | add_completion, remove_completions, with_registry, with_registry_mut, |
| 13 | CompletionBuilder, CompletionRegistry, CompletionSource, CompletionSpec, |
| 14 | }; |
| 15 | pub use error_hints::ErrorHints; |
| 16 | pub use highlighter::RushHighlighter; |
| 17 | pub use hinter::RushHinter; |
| 18 | pub use prompt::RushPrompt; |
| 19 |