CodeEdit icon indicating copy to clipboard operation
CodeEdit copied to clipboard

🐞 Output utility doesn't show color

Open itjustcrashed opened this issue 10 months ago • 1 comments

Description

The output pane in the utility area doesn't show colors, probably because it runs it sh. This can make it hard to use frameworks like Fresh, since they use colors. In the pane, the plain expressions to make those colors are shown

To Reproduce

  1. Open a project who's runtime/compiler uses color
  2. Run the project using the run tasks menu using the same command that you would in a terminal
  3. See error

Expected Behavior

The output pane should display color just as the the terminal does: Screenshot 2025-01-04 at 8 42 33 PM

Version Information

CodeEdit: 0.3.3-dev (44) macOS: 15.2 (24C101) Xcode: 16.2 (16C5032a)

Additional Context

.codeedit/settings.json

{
  "tasks" : [
    {
      "command" : "deno run -A dev.ts",
      "name" : "Development Server"
    },
    {
      "name" : "Build",
      "command" : "deno run dev.ts build"
    }
  ],
  "project" : {
    "projectName" : "Fresh Project"
  }
}

Screenshots

Screenshot 2025-01-04 at 8 41 45 PM

itjustcrashed avatar Jan 05 '25 01:01 itjustcrashed