Просмотр исходного кода

fix: dont paste collapse if in bash mode (#2482)

Aiden Cline 5 месяцев назад
Родитель
Сommit
4d481dea7e
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      packages/tui/internal/components/chat/editor.go

+ 3 - 0
packages/tui/internal/components/chat/editor.go

@@ -659,6 +659,9 @@ func (m *editorComponent) getExitKeyText() string {
 
 
 // shouldSummarizePastedText determines if pasted text should be summarized
 // shouldSummarizePastedText determines if pasted text should be summarized
 func (m *editorComponent) shouldSummarizePastedText(text string) bool {
 func (m *editorComponent) shouldSummarizePastedText(text string) bool {
+	if m.app.IsBashMode {
+		return false
+	}
 	lines := strings.Split(text, "\n")
 	lines := strings.Split(text, "\n")
 	lineCount := len(lines)
 	lineCount := len(lines)
 	charCount := len(text)
 	charCount := len(text)