Skip to content

Commit a2c796c

Browse files
committed
Fix prompt glyph
1 parent 5028e37 commit a2c796c

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ sofos
114114
- `/clear` - Clear conversation history
115115
- `/think [on|off]` - Toggle extended thinking (shows status if no arg)
116116
- `/compact` - Summarize older messages via the LLM to reclaim context tokens (auto-triggers at 80% usage)
117-
- `/s` - Safe mode (read-only, prompt: **`λ:`**)
117+
- `/s` - Safe mode (read-only, prompt: **`:`**)
118118
- `/n` - Normal mode (all tools, prompt: **`>`**)
119119
- `/exit`, `/quit`, `/q`, `Ctrl+D` - Exit with cost summary
120120
- `ESC` or `Ctrl+C` (while busy) - Interrupt AI response

examples/mcp_quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ You should see: `MCP servers initialized`
3636
### 4. Use MCP Tools
3737

3838
```
39-
λ> List files in my Documents folder
39+
> List files in my Documents folder
4040
41-
λ> Read test.txt from Documents
41+
> Read test.txt from Documents
4242
```
4343

4444
The AI will use tools like `filesystem_list_directory` and `filesystem_read_file`.

src/repl/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ impl Repl {
652652
}
653653

654654
pub fn process_single_prompt(&mut self, prompt: &str) -> Result<()> {
655-
let symbol = if self.safe_mode { "λ:" } else { "λ>" };
655+
let symbol = if self.safe_mode { ":" } else { ">" };
656656
println!("{} {}", symbol.bright_green().bold(), prompt);
657657
println!();
658658
self.process_message(prompt, vec![])?;

src/repl/tui/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ fn submit_input(app: &mut App, job_tx: &std_mpsc::Sender<Job>, steer_queue: &Ste
887887
let glyph = if will_steer {
888888
"↑"
889889
} else if app.is_safe_mode() {
890-
"λ:"
890+
":"
891891
} else {
892892
">"
893893
};

src/repl/tui/ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ fn draw_input(frame: &mut Frame, area: Rect, app: &App) {
8888
};
8989

9090
let safe = app.is_safe_mode();
91-
let prompt_glyph = if safe { " λ: " } else { " > " };
91+
let prompt_glyph = if safe { " : " } else { " > " };
9292
let title = Line::from(vec![Span::styled(
9393
prompt_glyph,
9494
Style::default()

src/ui/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ impl UI {
294294
for display_msg in &session.display_messages {
295295
match display_msg {
296296
DisplayMessage::UserMessage { content } => {
297-
println!("{} {}", "λ>".bright_green().bold(), content);
297+
println!("{} {}", ">".bright_green().bold(), content);
298298
println!();
299299
}
300300
DisplayMessage::AssistantMessage { content } => {

0 commit comments

Comments
 (0)