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
I am running platformio with the current (MELPA installed) platformio-mode.el. When compile errors are generated, the escape characters for cursor motion are causing problems with the error file,line matching in emacs. I can work around this in two ways so far:
Changing command in platformio-mode.el in the platformio--exec function to run/build on line 81 from (cmd (concat "platformio -f -c emacs " target)))
to (cmd (concat "platformio -f --no-ansi -c emacs " target)))
I was tying to figure out how to add the --no-ansi flag to the platformio.ini file, but have had no luck with this yet.
I am running platformio with the current (MELPA installed) platformio-mode.el. When compile errors are generated, the escape characters for cursor motion are causing problems with the error file,line matching in emacs. I can work around this in two ways so far:
resolves the issue.
platformio-mode.el
in theplatformio--exec
function to run/build on line 81 from(cmd (concat "platformio -f -c emacs " target)))
to
(cmd (concat "platformio -f --no-ansi -c emacs " target)))
I was tying to figure out how to add the
--no-ansi
flag to the platformio.ini file, but have had no luck with this yet.I am running emacs 26.3 on Ubuntu20.04
Here is a list of my installed packages:
Thank you for the nice package - Rick Sorensen
The text was updated successfully, but these errors were encountered: