command arguments are now underlined if they match an existing path -m ran rustfmt on the entire codebase

This commit is contained in:
2026-02-19 21:32:03 -05:00
parent b668dab522
commit a18a0b622f
44 changed files with 5549 additions and 5019 deletions

View File

@@ -408,12 +408,12 @@ pub enum ShErrKind {
ReadlineIntr(String),
ReadlineErr,
// Not really errors, more like internal signals
// Not really errors, more like internal signals
CleanExit(i32),
FuncReturn(i32),
LoopContinue(i32),
LoopBreak(i32),
ClearReadline,
ClearReadline,
Null,
}
@@ -437,7 +437,7 @@ impl Display for ShErrKind {
Self::LoopBreak(_) => "",
Self::ReadlineIntr(_) => "",
Self::ReadlineErr => "Readline Error",
Self::ClearReadline => "",
Self::ClearReadline => "",
Self::Null => "",
};
write!(f, "{output}")