fix: use ASCII prompt to prevent backspace corruption
This commit is contained in:
parent
3ed414231f
commit
d59c041bac
3 changed files with 3 additions and 1 deletions
1
rust/.claude/sessions/session-1775007981374.json
Normal file
1
rust/.claude/sessions/session-1775007981374.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"messages":[],"version":1}
|
||||
1
rust/.claude/sessions/session-1775008007069.json
Normal file
1
rust/.claude/sessions/session-1775008007069.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"messages":[],"version":1}
|
||||
|
|
@ -878,7 +878,7 @@ fn run_repl(
|
|||
permission_mode: PermissionMode,
|
||||
) -> Result<(), Box<dyn std::error::Error>> {
|
||||
let mut cli = LiveCli::new(model, true, allowed_tools, permission_mode)?;
|
||||
let mut editor = input::LineEditor::new("🦞 ", slash_command_completion_candidates());
|
||||
let mut editor = input::LineEditor::new("> ", slash_command_completion_candidates());
|
||||
println!("{}", cli.startup_banner());
|
||||
|
||||
loop {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue