You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unlike `:echo`, `:echom` is rather stupid. It will display a newline as
`^@` or `<00>` and tabs as `^I` or `<09>` (depending on the `display`
setting).
`:GoBuild --`
This makes those messages display nicer.
This fixes some – but not all – of #1429.
Unlike `:echo`, `:echom` is rather stupid. It will display a newline as
`^@` or `<00>` and tabs as `^I` or `<09>` (depending on the `display`
setting).
This some messages display nicer, for example `:GoBuild --` looked
rather confusing before, and looks as expected now.
This fixes some – but not all – of #1429.
Running
:GoBuild -tags=foo
is an error; this shows as:Which is not great; I need to type
:messages
to get the full error:which is formatted pretty badly. Newlines are lost, and tabs are represented as
<09>
.This is not a problem with just this command; I've seen it in many commands. In fact, it's the prime reason I typically use
:!go ...
instead of:Go
.Investigate if this can be improved.
The text was updated successfully, but these errors were encountered: