jizhihaoSAMA
jizhihaoSAMA

Reputation: 12672

Goland shows some strange characters in console

Sorry I really don't know how to describe my question.I'm new to study Gin:

When I run "go build xxxx" in Goland, like:

enter image description here

the console shows some unusual words:

enter image description here

I think the cause is that:Gin wants to show us some colorful words but the console couldn't parse them well so it show us the origin code of those color text.

How to make sure the console gives the parsed words?

Upvotes: 1

Views: 383

Answers (1)

artspb
artspb

Reputation: 1157

This is a known bug, you can read more about it here as well as vote for the issue to get notified of progress. To work around the problem, please do the following.

  1. Open Help | Find Action...
  2. Type Registry and hit Enter.
  3. Find go.run.processes.with.pty and disable it.

Upvotes: 1

Related Questions