gshell 1.0.0

gshell is a shell for people who live in the terminal. It pairs familiar Unix behavior with a tighter core, fast interaction, and an interface built to stay out of the way.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod ast;
pub mod builtins;
pub mod compat;
pub mod completion;
pub mod config;
pub mod expand;
pub mod history;
pub mod jobs;
pub mod lexer;
pub mod parser;
pub mod prompt;
pub mod runtime;
pub mod shell;
pub mod ui;