style: Applied formatting across new inquire files
CI / All (macos-latest) (push) Has been cancelled
CI / All (ubuntu-latest) (push) Has been cancelled
CI / All (windows-latest) (push) Has been cancelled

This commit is contained in:
2026-03-16 12:39:20 -06:00
parent 9e056bdcf0
commit f41c85b703
3 changed files with 40 additions and 40 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ use crate::config::{
TEMP_SESSION_NAME, WorkingMode, ensure_parent_exists, list_agents, load_env_file, TEMP_SESSION_NAME, WorkingMode, ensure_parent_exists, list_agents, load_env_file,
macro_execute, macro_execute,
}; };
use crate::render::{render_error, prompt_theme}; use crate::render::{prompt_theme, render_error};
use crate::repl::Repl; use crate::repl::Repl;
use crate::utils::*; use crate::utils::*;
+2 -2
View File
@@ -1,8 +1,8 @@
use syntect::highlighting::{Highlighter, Theme}; use crate::render::RenderOptions;
use anyhow::Result; use anyhow::Result;
use inquire::ui::{Attributes, Color, RenderConfig, StyleSheet}; use inquire::ui::{Attributes, Color, RenderConfig, StyleSheet};
use syntect::highlighting::{Highlighter, Theme};
use syntect::parsing::Scope; use syntect::parsing::Scope;
use crate::render::RenderOptions;
const DEFAULT_INQUIRE_PROMPT_THEME: Color = Color::DarkYellow; const DEFAULT_INQUIRE_PROMPT_THEME: Color = Color::DarkYellow;
+1 -1
View File
@@ -1,6 +1,6 @@
mod inquire;
mod markdown; mod markdown;
mod stream; mod stream;
mod inquire;
pub use inquire::prompt_theme; pub use inquire::prompt_theme;