summaryrefslogtreecommitdiff
path: root/helpfuncs.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-12-26 10:31:26 +0300
committerGrail Finder <wohilas@gmail.com>2025-12-26 10:31:26 +0300
commit61a29dee8c5d6e0a0d6ed3b4c7d06cd35c4a3094 (patch)
tree1b9b62c7a12a8db67626f09ea10da00a475ea29f /helpfuncs.go
parentc0ec82b579f09af020bc236eb84fa6b22d68823b (diff)
Fix: statusline
Diffstat (limited to 'helpfuncs.go')
-rw-r--r--helpfuncs.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/helpfuncs.go b/helpfuncs.go
index 30d9967..0efed05 100644
--- a/helpfuncs.go
+++ b/helpfuncs.go
@@ -227,7 +227,6 @@ func makeStatusLine() string {
} else {
imageInfo = ""
}
-
// Add shell mode status to status line
var shellModeInfo string
if shellMode {
@@ -235,9 +234,8 @@ func makeStatusLine() string {
} else {
shellModeInfo = ""
}
-
- statusLine := fmt.Sprintf(indexLineCompletion, botRespMode, cfg.AssistantRole, activeChatName,
- cfg.ToolUse, chatBody.Model, cfg.SkipLLMResp, cfg.CurrentAPI, cfg.ThinkUse, logLevel.Level(),
+ statusLine := fmt.Sprintf(indexLineCompletion, botRespMode, activeChatName,
+ cfg.ToolUse, chatBody.Model, cfg.SkipLLMResp, cfg.CurrentAPI,
isRecording, persona, botPersona, injectRole)
return statusLine + imageInfo + shellModeInfo
}