MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / AppendTranscript

Method AppendTranscript

ui/fullscreen_backend.go:608–615  ·  view source on GitHub ↗
(text string)

Source from the content-addressed store, hash-verified

606}
607
608func (b *FullscreenRendererBackend) AppendTranscript(text string) {
609 safe := strings.ToValidUTF8(text, "\uFFFD")
610 b.TranscriptChunks = append(b.TranscriptChunks, safe)
611 b.TranscriptTextCache = strings.Join(b.TranscriptChunks, "")
612 b.renderedTranscriptBlocks = nil
613 b.scrollTranscriptToBottom()
614 b.refreshControls()
615}
616
617func (b *FullscreenRendererBackend) refreshFromFrame(frame RenderFrame) {
618 b.syncTranscriptFromFrame(frame)

Callers 4

RenderWelcomeMethod · 0.95
RenderEventMethod · 0.95
WriteMethod · 0.80

Calls 2

refreshControlsMethod · 0.95