Skip to content

Commit

Permalink
do not activate markup for output buffs
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Jul 22, 2024
1 parent 858a2a5 commit ab2ab50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/commandbufs.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ func (cv *Code) RecycleCmdBuf(cmdName string) (*texteditor.Buffer, bool) {
buf.SetText(nil)
cv.CmdBufs[cmdName] = buf
buf.Autosave = false
buf.SetLanguage(fileinfo.Bash)
// note: critical to NOT set this, otherwise overwrites our native markup
// buf.SetLanguage(fileinfo.Bash)
return buf, true
}

Expand Down

0 comments on commit ab2ab50

Please sign in to comment.