summaryrefslogtreecommitdiffhomepage
path: root/internal/tui
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-05-12 09:54:20 -0500
committeradamdottv <[email protected]>2025-05-12 09:54:20 -0500
commit1d1a1ddcbf2ce5bca04fc8ccc6877b2c1c93ef59 (patch)
tree506a82283074dcf3bfdc104416e2a3648703e47a /internal/tui
parentdfe5fd8d970f76af9db0a7bf9a1e6f0bc01a291c (diff)
downloadopencode-1d1a1ddcbf2ce5bca04fc8ccc6877b2c1c93ef59.tar.gz
opencode-1d1a1ddcbf2ce5bca04fc8ccc6877b2c1c93ef59.zip
fix: visual tweaks
Diffstat (limited to 'internal/tui')
-rw-r--r--internal/tui/components/chat/list.go9
1 files changed, 4 insertions, 5 deletions
diff --git a/internal/tui/components/chat/list.go b/internal/tui/components/chat/list.go
index f749f6b05..bce6f50e1 100644
--- a/internal/tui/components/chat/list.go
+++ b/internal/tui/components/chat/list.go
@@ -386,13 +386,12 @@ func (m *messagesCmp) help() string {
} else {
text += lipgloss.JoinHorizontal(
lipgloss.Left,
- baseStyle.Foreground(t.TextMuted()).Bold(true).Render("press "),
baseStyle.Foreground(t.Text()).Bold(true).Render("enter"),
- baseStyle.Foreground(t.TextMuted()).Bold(true).Render(" to send the message,"),
- baseStyle.Foreground(t.TextMuted()).Bold(true).Render(" write"),
+ baseStyle.Foreground(t.TextMuted()).Bold(true).Render(" to send,"),
baseStyle.Foreground(t.Text()).Bold(true).Render(" \\"),
- baseStyle.Foreground(t.TextMuted()).Bold(true).Render(" and enter to add a new line,"),
- baseStyle.Foreground(t.TextMuted()).Bold(true).Render(" press"),
+ baseStyle.Foreground(t.TextMuted()).Bold(true).Render("+"),
+ baseStyle.Foreground(t.Text()).Bold(true).Render("enter"),
+ baseStyle.Foreground(t.TextMuted()).Bold(true).Render(" for newline,"),
baseStyle.Foreground(t.Text()).Bold(true).Render(" ctrl+h"),
baseStyle.Foreground(t.TextMuted()).Bold(true).Render(" to toggle tool messages"),
)