refactor: output info includes auto_copy and light_theme (#230)

pull/231/head
sigoden 7 months ago committed by GitHub
parent c99bd015aa
commit e8461b8462
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -163,12 +163,13 @@ Press Ctrl+C to abort readline, Ctrl+D to exit the REPL
〉.info
model openai:gpt-3.5-turbo
temperature -
dry_run false
save true
highlight true
light_theme false
wrap no
wrap_code false
dry_run false
auto_copy false
keybindings emacs
prelude -
config_file /home/alice/.config/aichat/config.yaml

@ -46,12 +46,12 @@ pub struct Config {
/// GPT temperature, between 0 and 2
#[serde(rename(serialize = "temperature", deserialize = "temperature"))]
pub default_temperature: Option<f64>,
/// Dry-run flag
pub dry_run: bool,
/// Whether to save the message
pub save: bool,
/// Whether to disable highlight
pub highlight: bool,
/// Dry-run flag
pub dry_run: bool,
/// Whether to use a light theme
pub light_theme: bool,
/// Specify the text-wrapping mode (no, auto, <max-width>)
@ -366,9 +366,10 @@ impl Config {
("dry_run", self.dry_run.to_string()),
("save", self.save.to_string()),
("highlight", self.highlight.to_string()),
("light_theme", self.light_theme.to_string()),
("wrap", wrap),
("wrap_code", self.wrap_code.to_string()),
("light_theme", self.light_theme.to_string()),
("auto_copy", self.auto_copy.to_string()),
("keybindings", self.keybindings.stringify().into()),
("prelude", prelude),
("config_file", display_path(&Self::config_file()?)),

@ -43,7 +43,7 @@ const REPL_COMMANDS: [(&str, &str); 13] = [
lazy_static! {
static ref COMMAND_RE: Regex = Regex::new(r"^\s*(\.\S*)\s*").unwrap();
static ref MULTILINE_RE: Regex = Regex::new(r#"(?ms)^\s*"""\s*(.*)\s*"""\s*$"#).unwrap();
static ref MULTILINE_RE: Regex = Regex::new(r#"(?s)^\s*"""\s*(.*)\s*"""\s*$"#).unwrap();
}
pub struct Repl {

Loading…
Cancel
Save