Fixes: https://github.com/ziglang/zig.vim/issues/105
This removes escape characters being inserted due to various shells configurations. I think the -- plain can technically be dropped, as escape characters for color rendering are inserted regardless.
I also tried solutions with:
--color off(it led me to realize it was shell related)- forcing a clean
envduring this scope (but I think it'd run into cross-platform issues) - adding version checking as
--plainwas introduced in ~0.11, but I don't believe it is needed in the end.
cc: @melenaus
Fixes: https://github.com/ziglang/zig.vim/issues/105
This removes escape characters being inserted due to various shells configurations. I think the `-- plain` can technically be dropped, as escape characters for color rendering are inserted regardless.
I also tried solutions with:
- `--color off` (it led me to realize it was shell related)
- forcing a clean `env` during this scope (but I think it'd run into cross-platform issues)
- adding version checking as `--plain` was introduced in ~0.11, but I don't believe it is needed in the end.
cc: @melenaus