Implemented cmd runtime expansion for the prompt

This commit is contained in:
2025-03-09 03:51:49 -04:00
parent 41582672d5
commit e118844d57
6 changed files with 84 additions and 48 deletions

View File

@@ -13,9 +13,6 @@ pub fn check_delims(line: &str) -> bool {
while let Some(ch) = chars.next() {
case_check.push(ch);
if case_check.len() > 4 {
case_check = case_check[1..].to_string();
}
if case_check.ends_with("case") {
case_depth += 1;
}