Browse Source

fix: visual tweaks

adamdottv 9 months ago
parent
commit
1d1a1ddcbf
1 changed files with 4 additions and 5 deletions
  1. 4 5
      internal/tui/components/chat/list.go

+ 4 - 5
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"),
 		)