reached usable state with procedural macro

This commit is contained in:
2025-01-12 23:41:34 +01:00
parent d20fd0d023
commit f5197c6362
11 changed files with 229 additions and 179 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ use arguments::*;
use clap::Parser;
use config::*;
use bookmarks::*;
use config_parser::format::*;
use config_parser::*;
use stack::Stack;
use std::env::{current_dir, var};
use std::io::{Error, Result};
@@ -25,7 +25,7 @@ fn main() -> Result<()> {
return Ok(());
}
};
let config = match Config::new() {
let config = match Config::new(true) {
Ok(value) => value,
Err(error) => {
print!("echo '{}{}{}' && false", style_error, error, RESET_SEQ);